mirror of
https://github.com/woodchen-ink/proxy-go.git
synced 2025-07-18 16:41:54 +08:00
- Delete `isAllowedUser` function for user authorization - Remove environment variable `OAUTH_ALLOWED_USERS` from docker-compose - Eliminate user whitelist check in OAuth callback handler
12 lines
253 B
YAML
12 lines
253 B
YAML
services:
|
|
proxy:
|
|
image: woodchen/proxy-go:latest
|
|
container_name: proxy-go
|
|
ports:
|
|
- "3336:3336"
|
|
volumes:
|
|
- ./data:/app/data
|
|
environment:
|
|
- TZ=Asia/Shanghai
|
|
- OAUTH_CLIENT_ID=your_client_id
|
|
restart: always |