diff options
author | Chris Buechler <cmb@pfsense.org> | 2016-01-04 17:17:46 -0600 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2016-01-05 09:08:10 -0200 |
commit | 257fdefe7cc43bb9204f068f5caa1196602f8374 (patch) | |
tree | ef033d518e1f0625ef1eaec0237f3da3ebf5a8b9 /src/etc/inc/system.inc | |
parent | cd41643dcd52e5a5aacba5a3c0165fbf9b5bb0fd (diff) | |
download | pfsense-257fdefe7cc43bb9204f068f5caa1196602f8374.zip pfsense-257fdefe7cc43bb9204f068f5caa1196602f8374.tar.gz |
Bring back $ca in config function
Diffstat (limited to 'src/etc/inc/system.inc')
-rw-r--r-- | src/etc/inc/system.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/etc/inc/system.inc b/src/etc/inc/system.inc index 3e05ccb..691eff3 100644 --- a/src/etc/inc/system.inc +++ b/src/etc/inc/system.inc @@ -1127,7 +1127,7 @@ function system_webgui_start() { /* generate nginx configuration */ system_generate_nginx_config("{$g['varetc_path']}/nginx-webConfigurator.conf", - $crt, $key, "nginx-webConfigurator.pid", $portarg, "/usr/local/www/", + $crt, $key, $ca, "nginx-webConfigurator.pid", $portarg, "/usr/local/www/", "cert.crt", "cert.key"); /* kill any running nginx */ @@ -1154,6 +1154,7 @@ function system_webgui_start() { function system_generate_nginx_config($filename, $cert, $key, + $ca, $pid_file, $port = 80, $document_root = "/usr/local/www/", |