2020-04-12 20:01:33 +00:00
|
|
|
package constants
|
|
|
|
|
|
|
|
|
|
const (
|
2020-10-20 02:45:28 +00:00
|
|
|
// OpenVPNAuthConf is the file path to the OpenVPN auth file.
|
2022-01-29 15:34:59 +00:00
|
|
|
OpenVPNAuthConf = "/etc/openvpn/auth.conf"
|
2021-06-20 16:12:39 +00:00
|
|
|
// ServersData is the server information filepath.
|
2020-12-29 17:49:38 +00:00
|
|
|
ServersData = "/gluetun/servers.json"
|
2020-04-12 20:01:33 +00:00
|
|
|
)
|