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
#!/bin/sh | |
# Dell SonicWALL NetExtender client initialization | |
# You should place the netExtender excutable under: | |
# /usr/sbin/netExtender | |
rm -f /etc/ppp/sslvpn.pid | |
rm -f /etc/ppp/sslvpn.pid2 | |
rm -f /etc/ppp/sslvpn.clientip | |
rm -f /etc/ppp/ip-down.d/sslvpnroutecleanup |
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
# I had a bit of trouble getting my unifi controller (hosted offsite) to use a proxy/letsencrypt. So here are the fruits of my labor. | |
# The unifi default port is 8443 running on localhost. | |
# License: CC0 (Public Domain) | |
server { | |
# SSL configuration | |
# | |
listen 443 ssl default_server; | |
listen [::]:443 ssl default_server; |