diff options
Diffstat (limited to 'src/https_server.erl')
-rw-r--r-- | src/https_server.erl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/https_server.erl b/src/https_server.erl index a0b81b4..ccbc2e7 100644 --- a/src/https_server.erl +++ b/src/https_server.erl @@ -3,6 +3,10 @@ start() -> io:format("Starting https server~n"), + case code:ensure_loaded(jiffy) of + {module, jiffy} -> ok; + _ -> io:format("missing jiffy -- please add to load path~n") + end, %% TODO: put this in httpd_props.conf and use that at erlang %% start. inets:start(httpd, {proplist_file, "httpd_props.conf"}). ServerRoot = "/home/linus/usr/src/ct/ctls/webroot", |