diff options
author | Linus Nordberg <linus@nordberg.se> | 2014-06-10 20:27:06 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordberg.se> | 2014-06-10 20:27:06 +0200 |
commit | f473802d5ebe9192c635c477d053523b2baaa3a3 (patch) | |
tree | 93715c463006a28fddcd2dd55fb49abae9169e71 /src | |
parent | a59474f202b8115a8bff58101b1b9847551764ce (diff) |
Change ctls -> catlfish.
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}, |