diff options
-rw-r--r-- | httpd_props.conf | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/httpd_props.conf b/httpd_props.conf index 808be50..bc5f726 100644 --- a/httpd_props.conf +++ b/httpd_props.conf @@ -1,20 +1,20 @@ [ {port, 8080}, - {bind_address, {192, 168, 122, 119}}, - {server_name, "flimsy.ct.nordu.net"}, - {server_root, "/home/linus/usr/src/ct/ctls/webroot"}, - {document_root, "/home/linus/usr/src/ct/ctls/webroot/docroot"}, + {bind_address, {127, 0, 0, 1}}, + {server_name, "flimsy"}, + {server_root, "ctls/webroot"}, + {document_root, "ctls/webroot/docroot"}, {modules, [mod_alias, mod_auth, mod_esi, mod_get, mod_head, mod_log, mod_disk_log]}, %%{re_write, {"^/ct/v1/(.*)$", "/ct/v1/https_server/\\1"}}, %%{script_re_write, {"^/ct/v1/(.*)_(.*)$", "/ct/v1/\\1-\\2"}}, {erl_script_alias, {"/ct", [v1]}}, {erl_script_nocache, true}, - {error_log, "/home/linus/usr/src/ct/ctls/webroot/log/error"}, - {security_log, "/home/linus/usr/src/ct/ctls/webroot/log/security"}, - {transfer_log, "/home/linus/usr/src/ct/ctls/webroot/log/transfer"}, + {error_log, "ctls/webroot/log/error"}, + {security_log, "ctls/webroot/log/security"}, + {transfer_log, "ctls/webroot/log/transfer"}, {socket_type, {essl, % See ssl(3erl) for SSL options. - [{certfile, "/home/linus/usr/src/ct/ctls/webroot/certs/webcert.pem"}, - {keyfile, "/home/linus/usr/src/ct/ctls/webroot/keys/webkey.pem"}]}} + [{certfile, "ctls/webroot/certs/webcert.pem"}, + {keyfile, "ctls/webroot/keys/webkey.pem"}]}} ]. |