We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a27f732 commit d07efa5Copy full SHA for d07efa5
index.php
@@ -28,12 +28,12 @@
28
} else {
29
$conf_dir = 'windows';
30
}
31
- $rootPath = realpath("./client-conf/$conf_dir");
+ $rootPath = realpath("./../vpn/conf/$conf_dir");
32
33
// Initialize archive object ;;;; why doing this every time the user logs in, when the cert is static?
34
$archive_base_name = "openvpn-$conf_dir";
35
$archive_name = "$archive_base_name.zip";
36
- $archive_path = "./client-conf/$archive_name";
+ $archive_path = "./../vpn/conf/$archive_name";
37
$zip = new ZipArchive();
38
$zip->open($archive_path, ZipArchive::CREATE | ZipArchive::OVERWRITE);
39
0 commit comments