diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-11-29 06:48:13 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-11-29 06:48:13 +0000 |
commit | 672a863c87b96763f9442dc92d3345bb24387a95 (patch) | |
tree | 1a602e1e9b829a62744fdfd518ed5bd6234bf322 | |
parent | f8c0d51d232fef882853003cf3f88c69dbdcb002 (diff) | |
download | pfsense-672a863c87b96763f9442dc92d3345bb24387a95.zip pfsense-672a863c87b96763f9442dc92d3345bb24387a95.tar.gz |
Correct (cert key) order
-rw-r--r-- | etc/inc/captiveportal.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/captiveportal.inc b/etc/inc/captiveportal.inc index 34167e7..58da0c0 100644 --- a/etc/inc/captiveportal.inc +++ b/etc/inc/captiveportal.inc @@ -194,7 +194,7 @@ EOD; /* generate lighttpd configuration */ system_generate_lighty_config("{$g['varetc_path']}/lighty-CaptivePortal.conf", - $key, $cert, "lighty-CaptivePortal.pid", "8000", "/usr/local/captiveportal/", + $cert, $key, "lighty-CaptivePortal.pid", "8000", "/usr/local/captiveportal/", "cert-portal.pem", "1", $procs, $use_fastcgi); /* attempt to start lighttpd */ |