openvpn: Enable support for communication among all clients

Closes: #1694

Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
Nektarios Katakis 2019-12-31 15:27:42 +00:00 committed by Sunil Mohan Adapa
parent 171f2976cf
commit 018767aaae
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2
2 changed files with 2 additions and 1 deletions

View File

@ -51,6 +51,7 @@ SERVER_CONFIGURATION = '''
port 1194
proto udp
dev tun
client-to-client
ca /etc/openvpn/freedombox-keys/pki/ca.crt
cert /etc/openvpn/freedombox-keys/pki/issued/server.crt
key /etc/openvpn/freedombox-keys/pki/private/server.key

View File

@ -30,7 +30,7 @@ from plinth.utils import format_lazy
from .manifest import backup, clients # noqa, pylint: disable=unused-import
version = 3
version = 4
managed_services = ['openvpn-server@freedombox']