diff --git a/README.md b/README.md index 758af66..b92db6c 100644 --- a/README.md +++ b/README.md @@ -6,15 +6,8 @@ This script will let you setup your own VPN server in no more than a minute, eve ###Installation Run the script and follow the assistant: -`wget git.io/vpn --no-check-certificate -O openvpn-install.sh; bash openvpn-install.sh` +`wget https://raw.githubusercontent.com/dylanmtaylor/openvpn-install/master/openvpn-install.sh --no-check-certificate -O openvpn-install.sh; bash openvpn-install.sh` Once it ends, you can run it again to add more users, remove some of them or even completely uninstall OpenVPN. -###I want to run my own VPN but don't have a server for that -You can get a little VPS for just $6/year at [Bandwagon Host](https://bandwagonhost.com/aff.php?aff=575&pid=21). - -If you don't care about sharing an IP address with more people, check out the awesome [LowEndSpirit](http://lowendspirit.com/) project too. They are providing IPv6 VPS with NATed IPv4 for only 3€/year. - -###Donations - -If you want to show your appreciation, you can donate via [PayPal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=VBAYDL34Z7J6L) or [Bitcoin](https://www.coinbase.com/Nyr). Thanks! \ No newline at end of file +This is forked from nyr's openvpn-install script, with a couple changes I find useful diff --git a/openvpn-install.sh b/openvpn-install.sh index f384ddc..d28f5c5 100755 --- a/openvpn-install.sh +++ b/openvpn-install.sh @@ -210,7 +210,8 @@ else # Let's fix one thing first... cp -u -p openssl-1.0.0.cnf openssl.cnf # Fuck you NSA - 1024 bits was the default for Debian Wheezy and older - sed -i 's|export KEY_SIZE=1024|export KEY_SIZE=2048|' /etc/openvpn/easy-rsa/2.0/vars + sed -i 's|export KEY_SIZE=1024|export KEY_SIZE=4096|' /etc/openvpn/easy-rsa/2.0/vars + sed -i 's|export KEY_SIZE=2048|export KEY_SIZE=4096|' /etc/openvpn/easy-rsa/2.0/vars # Create the PKI . /etc/openvpn/easy-rsa/2.0/vars . /etc/openvpn/easy-rsa/2.0/clean-all @@ -235,10 +236,11 @@ else fi cp server.conf /etc/openvpn/ cd /etc/openvpn/easy-rsa/2.0/keys - cp ca.crt ca.key dh2048.pem server.crt server.key /etc/openvpn + cp ca.crt ca.key dh4096.pem server.crt server.key /etc/openvpn cd /etc/openvpn/ # Set the server configuration - sed -i 's|dh dh1024.pem|dh dh2048.pem|' server.conf + sed -i 's|dh dh1024.pem|dh dh4096.pem|' server.conf + sed -i 's|dh dh2048.pem|dh dh4096.pem|' server.conf sed -i 's|;push "redirect-gateway def1 bypass-dhcp"|push "redirect-gateway def1 bypass-dhcp"|' server.conf sed -i "s|port 1194|port $PORT|" server.conf # DNS