├── .github └── FUNDING.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── backup.sh ├── bin ├── genclient.sh ├── oath-sec-gen.sh ├── oath.sh ├── revoke.sh └── rmcert.sh ├── checkpsw.sh ├── clients └── .gitignore ├── config ├── client.conf ├── easy-rsa.vars └── old-server.conf ├── db └── .gitignore ├── docker-compose-no-ui.yml ├── docker-compose.yml ├── docker-entrypoint.sh ├── fw-rules.sh ├── log └── .gitignore ├── openssl-easyrsa.cnf ├── pki └── .gitignore ├── server.conf └── staticclients └── .gitignore /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bin/oath-orig.sh 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/README.md -------------------------------------------------------------------------------- /backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/backup.sh -------------------------------------------------------------------------------- /bin/genclient.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/bin/genclient.sh -------------------------------------------------------------------------------- /bin/oath-sec-gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/bin/oath-sec-gen.sh -------------------------------------------------------------------------------- /bin/oath.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/bin/oath.sh -------------------------------------------------------------------------------- /bin/revoke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/bin/revoke.sh -------------------------------------------------------------------------------- /bin/rmcert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/bin/rmcert.sh -------------------------------------------------------------------------------- /checkpsw.sh: -------------------------------------------------------------------------------- 1 | # this is your default check password script -------------------------------------------------------------------------------- /clients/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/clients/.gitignore -------------------------------------------------------------------------------- /config/client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/config/client.conf -------------------------------------------------------------------------------- /config/easy-rsa.vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/config/easy-rsa.vars -------------------------------------------------------------------------------- /config/old-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/config/old-server.conf -------------------------------------------------------------------------------- /db/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/db/.gitignore -------------------------------------------------------------------------------- /docker-compose-no-ui.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/docker-compose-no-ui.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /fw-rules.sh: -------------------------------------------------------------------------------- 1 | #This is the file with additional FW rules. 2 | -------------------------------------------------------------------------------- /log/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/log/.gitignore -------------------------------------------------------------------------------- /openssl-easyrsa.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/openssl-easyrsa.cnf -------------------------------------------------------------------------------- /pki/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/pki/.gitignore -------------------------------------------------------------------------------- /server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/server.conf -------------------------------------------------------------------------------- /staticclients/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3vilh/openvpn-server/HEAD/staticclients/.gitignore --------------------------------------------------------------------------------