2022-05-07 19:17:10 +00:00
|
|
|
package openvpn
|
|
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
// AuthConf is the file path to the OpenVPN auth file.
|
|
|
|
|
AuthConf = "/etc/openvpn/auth.conf"
|
2022-08-15 19:54:58 -04:00
|
|
|
// AskPassPath is the file path to the decryption passphrase for
|
|
|
|
|
// and encrypted private key, which is pointed by `askpass`.
|
|
|
|
|
AskPassPath = "/etc/openvpn/askpass" //nolint:gosec
|
2022-05-07 19:17:10 +00:00
|
|
|
)
|