82 lines
1.9 KiB
Plaintext
82 lines
1.9 KiB
Plaintext
# -->
|
|
# MANDATORY SETTINGS
|
|
# <--
|
|
|
|
## Script settings
|
|
export DEBUG="true"
|
|
|
|
## Live target settings
|
|
export LIVE_TARGET_IP="192.168.1.10"
|
|
export LIVE_TARGET_PASSWD="example"
|
|
|
|
## Server settings
|
|
export SERVER_LANGUAGE="FR"
|
|
export SERVER_LOCALE="fr_FR"
|
|
export SERVER_TIMEZONE="Europe/Paris"
|
|
export SERVER_OWNER_NAME="yourName"
|
|
export SERVER_USER_EMAIL="user@your-domain.com"
|
|
export SERVER_ADMIN_EMAIL="admin@your-domain.com"
|
|
export SERVER_AUTHORIZED_SSH_PUBKEYS=( "ssh-ed25519 AAAAoefzefpoipoeCEZJCPEACPAcjapjcpajepcjAPJECJPEJAPJAZ yours@yourdomain.com" )
|
|
|
|
## Traefik settings
|
|
export CLOUDFLARE_DNS_API_TOKEN="yourToken"
|
|
|
|
## Smtp settings
|
|
export SMTP_SERVER_USERNAME="your-address@gmail.com"
|
|
export SMTP_SERVER_PASSWORD="emrp raps vzoi vnoe"
|
|
export SMTP_SERVER_HOST="smtp.yourdomain.com"
|
|
export SMTP_SERVER_PORT="587"
|
|
|
|
## Network settings
|
|
export NETWORK_SUBNET="192.168.1.0/24"
|
|
export NETWORK_ROUTER_IP="192.168.1.1"
|
|
export HOME_SERVER_IP="192.168.1.5"
|
|
|
|
## Services settings
|
|
export DOMAIN_NAME="yourdomain.com"
|
|
export SELECTED_DNS_SERVICE=(
|
|
"pi-hole" # or "adguard"
|
|
)
|
|
export SELECTED_WEB_APPLICATIONS=(
|
|
"crafty"
|
|
"frigate"
|
|
"gitea"
|
|
"home-assistant"
|
|
"immich"
|
|
"it-tools"
|
|
"jellyfin"
|
|
"netbootxyz"
|
|
"nextcloud"
|
|
"passbolt"
|
|
"uptime-kuma"
|
|
"vscodium"
|
|
)
|
|
export SELECTED_SYSTEM_SERVICES=(
|
|
"clamav"
|
|
"virtualization"
|
|
)
|
|
|
|
# -->
|
|
# OPTIONAL SETTINGS
|
|
# <--
|
|
|
|
## DNS service subdomain
|
|
export SELECTED_DNS_SERVICE_SUBDOMAIN=(
|
|
"my-pi-hole-subdomain" # or "my-adguard-subdomain"
|
|
)
|
|
|
|
## Web applications subdomain
|
|
export SELECTED_WEB_APPLICATIONS_SUBDOMAIN=( # ⚠️ Must match SELECTED_WEB_APPLICATIONS order ⚠️
|
|
"my-crafty-subdomain"
|
|
"my-frigate-subdomain"
|
|
"my-gitea-subdomain"
|
|
"my-home-assistant-subdomain"
|
|
"my-immich-subdomain"
|
|
"my-it-tools-subdomain"
|
|
"my-jellyfin-subdomain"
|
|
"my-netbootxyz-subdomain"
|
|
"my-nextcloud-subdomain"
|
|
"my-passbolt-subdomain"
|
|
"my-uptime-kuma-subdomain"
|
|
"my-vscodium-subdomain"
|
|
) |