-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.https.example
More file actions
33 lines (24 loc) · 778 Bytes
/
env.https.example
File metadata and controls
33 lines (24 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# HTTPS/SOCKS5 Proxy Mode Configuration
# Copy to .env and customize with your values
APP_ENV=production
# Proxy mode: "signal" for Signal proxy, "https" for HTTP/SOCKS5 proxy
PROXY_MODE=https
# Your domain (for TLS certificates)
DOMAIN=proxy.yourdomain.com
# HTTP Proxy settings
HTTP_PROXY_PORT=:8080
HTTP_PROXY_TLS=true
HTTP_PROXY_TLS_PORT=:8443
# SOCKS5 Proxy settings
SOCKS5_PORT=:1080
# User credentials file
USERS_FILE=users.json
# Metrics
METRICS_LISTEN=:9090
# PAC (Proxy Auto-Config) settings
PAC_ENABLED=true
PAC_TOKEN= # Optional: Set secret token for PAC access (max 7 chars recommended)
PAC_DEFAULT_USER= # Optional: Default username if no ?user= param
PAC_RATE_LIMIT_RPM=60 # Rate limit requests per minute
DEBUG=false
LOG_LEVEL=info