Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
docker-ipsec-vpn-server/vpn.env.example
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
37 lines (31 sloc)
1.46 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Note: All the variables to this image are optional. | |
# See README for more information. | |
# To use, uncomment and replace with your own values. | |
# Define IPsec PSK, VPN username and password | |
# - DO NOT put "" or '' around values, or add space around = | |
# - DO NOT use these special characters within values: \ " ' | |
# VPN_IPSEC_PSK=your_ipsec_pre_shared_key | |
# VPN_USER=your_vpn_username | |
# VPN_PASSWORD=your_vpn_password | |
# Define additional VPN users | |
# - DO NOT put "" or '' around values, or add space around = | |
# - DO NOT use these special characters within values: \ " ' | |
# - Usernames and passwords must be separated by spaces | |
# VPN_ADDL_USERS=additional_username_1 additional_username_2 | |
# VPN_ADDL_PASSWORDS=additional_password_1 additional_password_2 | |
# Use a DNS name for the VPN server | |
# - The DNS name must be a fully qualified domain name (FQDN) | |
# VPN_DNS_NAME=vpn.example.com | |
# Specify a name for the first IKEv2 client | |
# - Use one word only, no special characters except '-' and '_' | |
# - The default is 'vpnclient' if not specified | |
# VPN_CLIENT_NAME=your_client_name | |
# Use alternative DNS servers | |
# - By default, clients are set to use Google Public DNS | |
# - Example below shows Cloudflare's DNS service | |
# VPN_DNS_SRV1=1.1.1.1 | |
# VPN_DNS_SRV2=1.0.0.1 | |
# Protect IKEv2 client config files using a password | |
# - By default, no password is required when importing IKEv2 client configuration | |
# - Uncomment if you want to protect these files using a random password | |
# VPN_PROTECT_CONFIG=yes |