-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from SloCompTech/develop
Improved IPv6 support & finalized client mode support
- Loading branch information
Showing
13 changed files
with
70 additions
and
20 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# | ||
# System OpenVPN config file - server specific | ||
# | ||
# @see https://community.openvpn.net/openvpn/wiki/Openvpn24ManPage | ||
# | ||
# DO NOT EDIT THIS FILE, if you are unsure what to do, | ||
# place your config file in openvpn directory | ||
# | ||
|
||
# Server hooks | ||
client-connect "/usr/local/bin/run_hooks client-connect" | ||
client-disconnect "/usr/local/bin/run_hooks client-disconnect" | ||
learn-address "/usr/local/bin/run_hooks learn-address" | ||
tls-verify "/usr/local/bin/run_hooks tls-verify" | ||
|
||
# Client config directory | ||
client-config-dir /config/openvpn/ccd | ||
|
||
# Certificate revocation list | ||
crl-verify /config/pki/crl.pem | ||
|
||
# | ||
# For username & password authentication uncomment bellow | ||
# | ||
#auth-user-pass-verify "/app/bin/run_hooks via-env" | ||
|
||
# Username & password authentication optional | ||
#--auth-user-pass-optional |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,6 @@ | |
|
||
if [ "$FAIL_MODE" == "hard" ]; then | ||
exec s6-svscanctl -t /var/run/s6/services | ||
else | ||
sleep 5 | ||
fi |