From 326664676bf19fb0bbc95ee7f3414de9af3c4c87 Mon Sep 17 00:00:00 2001 From: Victor LABORIE Date: Wed, 24 Oct 2018 15:38:31 +0200 Subject: [PATCH] Add doc for OpenVPN config file auto-generation --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 159ffe2..8534cc2 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,24 @@ chown -R _shellpki:_shellpki /etc/shellpki %_shellpki ALL = (root) /usr/local/sbin/shellpki ~~~ +## OpenVPN + +If you want auto-generation of OpenVPN config file in /etc/shellpki/openvpn, you need to create a template file in /etc/shellpki/ovpn.conf, eg. : + +~~~ +client +dev tun +tls-client +proto udp + +remote ovpn.example.com 1194 + +persist-key +persist-tun + +cipher AES-256-CBC +~~~ + ## Usage ~~~