Would you consider making the below change so that the openvpn logs are accessible?
I often have random issues with my VPN provider and the OpenVPN logs are essential in debugging the issue.
The level of logging is defined in the openvpn.ovpn file, and that's already in the user accessible /config/openvpn directory.
in openvpn.sh, change this line:
openvpn --daemon --cd /config/openvpn --config openvpn.ovpn
to this:
openvpn --daemon --cd /config/openvpn --config openvpn.ovpn --log-append openvpn.log
Would you consider making the below change so that the openvpn logs are accessible? I often have random issues with my VPN provider and the OpenVPN logs are essential in debugging the issue. The level of logging is defined in the openvpn.ovpn file, and that's already in the user accessible /config/openvpn directory.
in openvpn.sh, change this line: openvpn --daemon --cd /config/openvpn --config openvpn.ovpn to this: openvpn --daemon --cd /config/openvpn --config openvpn.ovpn --log-append openvpn.log