diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/catlfish.erl (renamed from src/ctls.erl) | 4 | ||||
-rw-r--r-- | src/https_server.erl | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/ctls.erl b/src/catlfish.erl index 9c4c9b4..015d8b4 100644 --- a/src/ctls.erl +++ b/src/catlfish.erl @@ -4,9 +4,9 @@ %% of subdirectories need to be added to the Erlang path %% (code:add_pathz/1). This can be done in an ~/.erlang file. --module('ctls'). +-module('catlfish'). -export([start/0]). start() -> - io:format("Starting ctls~n"), + io:format("Starting catlfish~n"), https_server:start(). diff --git a/src/https_server.erl b/src/https_server.erl index ccbc2e7..47b4465 100644 --- a/src/https_server.erl +++ b/src/https_server.erl @@ -9,7 +9,7 @@ start() -> 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", + ServerRoot = "/home/linus/usr/src/ct/catlfish/webroot", {ok, Pid} = inets:start(httpd, [{port, 8080}, |