-
-
Notifications
You must be signed in to change notification settings - Fork 327
/
.env.example
47 lines (39 loc) · 1.1 KB
/
.env.example
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Docker Compose Environment Configuration
# General settings
# Set your timezone
TIMEZONE=America/Los_Angeles
# User and group identifiers
# User ID
PUID=1000
# Group ID
PGID=1000
# Network settings
# Subnet for the private network - NOT USED IN COMPOSE FILE, CAN BE REMOVED
# SUBNET=10.2.0.0/24
# Static IP for Unbound
UNBOUND_IPV4_ADDRESS=10.2.0.200
# Static IP for Pi-hole
PIHOLE_IPV4_ADDRESS=10.2.0.100
# Port for Wireguard server
WIREGUARD_SERVER_PORT=51820
# DNS for Wireguard peers, set to Pi-hole
WIREGUARD_PEER_DNS=10.2.0.100
# Wireguard settings
# Number of peers (clients) to generate
WIREGUARD_PEERS=1
# Wireguard-UI settings
# Session secret, change to something secure
WGUI_SESSION_SECRET=
# Username for Wireguard-UI
WGUI_USERNAME=admin
# Password for Wireguard-UI, change to something secure
WGUI_PASSWORD=admin
# Enable management of Wireguard start
WGUI_MANAGE_START=true
# Enable management of Wireguard restart
WGUI_MANAGE_RESTART=true
# Pi-hole settings
# Web password for Pi-hole, set to a secure password
WEBPASSWORD=
# IP address for the Unbound server used by Pi-hole
PIHOLE_DNS=10.2.0.200