mirror of
https://github.com/hwdsl2/docker-ipsec-vpn-server.git
synced 2026-04-26 01:55:53 +03:00
[GH-ISSUE #162] Add More VPN USER #149
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @pharrellxx3 on GitHub (Sep 28, 2019).
Original GitHub issue: https://github.com/hwdsl2/docker-ipsec-vpn-server/issues/162
Documents write is wrong
VPN_ADDL_USERS=additional_username_1 additional_username_2 VPN_ADDL_PASSWORDS=additional_password_1 additional_password_2but can't pass verify.
The finally edit,correct write like this
VPN_ADDL_USERS="additional_username_1 additional_username_2" VPN_ADDL_PASSWORDS="additional_password_1 additional_password_2"@hwdsl2 commented on GitHub (Sep 28, 2019):
@pharrellxx3 Hello! Thanks for bringing this up. The documentation is correct because Docker interprets the variable values in the
envfile literally, no quotes needed. Give it a try yourself and you’ll see.On the other hand, if you bind mount the
envfile (see advanced usage section in the README), single quotes around variable values are required.