/net.nix Secret
Created
October 1, 2017 08:47
configuration
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
services.openvpn.servers = { | |
colostate-engrVPN = { | |
config = '' | |
client | |
auth-user-pass | |
dev tap | |
proto tcp | |
resolv-retry infinite | |
nobind | |
persist-key | |
persist-tun | |
ca /root/openvpn/engr-vpn/ca.crt | |
ns-cert-type server | |
cert /root/openvpn/engr-vpn/client.crt | |
key /root/openvpn/engr-vpn/client.key | |
verb 3 | |
remote ssl.engr.colostate.edu | |
port 443 | |
reneg-sec 864000 | |
hand-window 60 | |
''; | |
autoStart = false; | |
updateResolvConf = true; | |
}; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment