-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
32 lines (24 loc) · 1.21 KB
/
.env.example
File metadata and controls
32 lines (24 loc) · 1.21 KB
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
# Wiredoor admin credentials
ADMIN_EMAIL=admin@example.com # Required. Also used by certbot if SSL is enabled
ADMIN_PASSWORD="ChangeMe1st!" # Required. Use a secure password
# VPN Information
VPN_HOST=public_host_or_ip # Required. Public address that clients will connect to
VPN_PORT=51820 # Default WireGuard UDP port
VPN_SUBNET=10.0.0.0/24 # Subnet for clients (in CIDR format)
# TCP/UDP Exposure (Public Port Range)
TCP_SERVICES_PORT_RANGE=32760-32767 # Optional. Port range to expose TCP/UDP services
# Timezone
TZ=America/New_York # Time zone (recommended for logging)
# OAUTH2 PROVIDER CONFIG https://oauth2-proxy.github.io/oauth2-proxy/configuration/providers/
OAUTH2_PROXY_PROVIDER=google
OAUTH2_PROXY_CLIENT_ID=
OAUTH2_PROXY_CLIENT_SECRET=
# Optional if you're using OIDC provider
# OAUTH2_PROXY_PROVIDER_DISPLAY_NAME="YOUR OIDC Provider"
# OAUTH2_PROXY_OIDC_ISSUER_URL="http://your-idp"
# Restrict login to members of a group or list of groups.
# OAUTH2_PROXY_ALLOWED_GROUPS=
# Authenticate emails with the specified domain. `*` by default.
# OAUTH2_PROXY_EMAIL_DOMAINS=
GRAFANA_USER=admin
GRAFANA_PASSWORD="ChangeMe1st!"