diff --git a/assets/files/openvpn-server/tor.conf b/assets/files/openvpn-server/tor.conf new file mode 100644 index 0000000..8a913ec --- /dev/null +++ b/assets/files/openvpn-server/tor.conf @@ -0,0 +1,43 @@ +port 6175 + +proto udp + +dev tun1 + +ca ca.crt +cert ovpn.crt +key ovpn.key + +dh dh.pem + +server 10.10.20.0 255.255.255.0 + +ifconfig-pool-persist /var/log/openvpn/ipp-tor.txt + +push "redirect-gateway def1 bypass-dhcp" + +push "dhcp-option DNS 10.10.20.1" +push "dhcp-option DNS 1.0.0.1" + +keepalive 10 120 + +tls-auth ta.key 0 + +cipher AES-256-CBC +auth SHA512 + +user nobody +group nogroup + +persist-key +persist-tun + +status /var/log/openvpn/openvpn-status-tor.log + +log-append /var/log/openvpn/openvpn-tor.log + +verb 3 + +explicit-exit-notify 1 + +crl-verify crl.pem \ No newline at end of file