diff options
author | Magnus Ahltorp <map@kth.se> | 2014-10-24 04:37:18 +0200 |
---|---|---|
committer | Magnus Ahltorp <map@kth.se> | 2014-10-24 04:37:18 +0200 |
commit | 314370d6e5e6326033b648ba621803b75337935f (patch) | |
tree | 355221c58ced5429db7e226107394e8794e0b706 /catlfish.config | |
parent | 3e43d0c819e95a75b850c298cfe9904ed180ac16 (diff) |
Use mochiweb for v1 APIexternal-merge
Diffstat (limited to 'catlfish.config')
-rw-r--r-- | catlfish.config | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/catlfish.config b/catlfish.config index 87a5e26..95d1809 100644 --- a/catlfish.config +++ b/catlfish.config @@ -7,9 +7,14 @@ {error_logger_mf_dir, "log"}, {error_logger_mf_maxbytes, 10485760}, % 10 MB {error_logger_mf_maxfiles, 10}]}, - {inets, - [{services, - [{httpd, [{proplist_file, "httpd_props.conf"}]}]}]}, + {catlfish, + [{https_servers, + [{"127.0.0.1", 8080, v1} + ]}, + {https_certfile, "catlfish/webroot/certs/webcert.pem"}, + {https_keyfile, "catlfish/webroot/keys/webkey.pem"}, + {https_cacertfile, "catlfish/webroot/certs/webcert.pem"} + ]}, {plop, [{entry_root_path, "db/certentries/"}, {index_path, "db/index"}, |