summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordberg.se>2014-06-11 16:59:56 +0200
committerLinus Nordberg <linus@nordberg.se>2014-06-11 16:59:56 +0200
commit68474f524989a616d1af5a3d1eba7534ce37fea4 (patch)
tree9ce204ae14be2e69820fbd1f47c62e5de2131805 /src/tools
parentc238e8aa3a472ebc9546c88f1291b325d11e85b0 (diff)
Remove unused stuff.
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/README85
-rw-r--r--src/tools/httpd_config.OFF9
-rw-r--r--src/tools/httpd_inets.config31
-rw-r--r--src/tools/httpd_inets.erl8
-rw-r--r--src/tools/httpd_inets_props.conf19
5 files changed, 0 insertions, 152 deletions
diff --git a/src/tools/README b/src/tools/README
deleted file mode 100644
index 3db5c00..0000000
--- a/src/tools/README
+++ /dev/null
@@ -1,85 +0,0 @@
-* httpd
-** ssl
-Run httpd using inets. Tell inets what to start by configuring
-'services' in a config file that you pass to erl(1) at startup:
-
-$ cat httpd_inets.config
-[{inets, [{services, [
- {httpd, [{proplist_file, "httpd_inets_props.conf"}]}
- ]}]}].
-$
-
-Then start erl with `-config httpd_inets'.
-In erl, start inets:
-
-1> inets.start().
-ok
-
-There are two ways to configure the httpd server.
-
-Either configure httpd using a props list with all the httpd arguments:
-
-$ cat httpd_inets_props.conf
-[
- {port, 8080},
- {bind_address, {127,0,0,1}},
- {server_name, "httpd_inets_FQDN"},
- {server_root, "/tmp/httpd_inets"},
- {document_root, "/tmp/httpd_inets/docroot"},
- {socket_type, essl},
- {ssl_certificate_file, "/tmp/httpd_inets/02.pem"},
- {ssl_certificate_key_file, "/tmp/httpd_inets/srv1.key"},
- {ssl_ca_certificate_file, "/tmp/httpd_inets/01.pem"}
-].
-$
-
-In the example config for inets above, this is what will be used.
-
-Or configure httpd using an Apache like configuration file. Configure
-inets to start httpd with {file, "httpd_config"} in
-httpd_inets.config. Here's a config file equivalent to what's seen
-above in the props list:
-
-$ cat httpd_config.OFF
-ServerName httpd_inets_FQDN
-ServerRoot /tmp/httpd_inets
-DocumentRoot /tmp/httpd_inets/docroot
-Port 8080
-SocketType essl
-
-SSLCertificateFile /tmp/httpd_inets/02.pem
-SSLCertificateKeyFile /tmp/httpd_inets/srv1.key
-SSLCACertificateFile /tmp/httpd_inets/01.pem
-$
-** dynamic content
-Configuring httpd with {erl_script_alias, {"/d", [httpd_inets]}} and
-compiling httpd_inets.erl will make the following URL refer to
-httpd_inets:hello/3:
-
- https://localhost:8080/d/httpd_inets:hello
-
-Here's an example of what http_inets.erl can look like:
-
-$ cat httpd_inets.erl
--module('httpd_inets').
--export([hello/3]).
-
-hello(SessionID, _Env, _Input) ->
- mod_esi:deliver(SessionID, [
- "Content-Type: text/html\r\n\r\n",
- "<html><body>hello, erlang world</body></html>"
- ]).
-$
-
-httpd config 'modules' seems to be crucial to get right, including the
-order of the modules listed. The mod_esi module is the one providing
-the erl_script_alias functionality. Here's a configuration that's
-working with Erlang R15B01 (erts-5.9.1):
-
- {modules, [mod_alias,
- mod_auth,
- mod_esi,
- mod_get,
- mod_head,
- mod_log,
- mod_disk_log]},
diff --git a/src/tools/httpd_config.OFF b/src/tools/httpd_config.OFF
deleted file mode 100644
index 5a75648..0000000
--- a/src/tools/httpd_config.OFF
+++ /dev/null
@@ -1,9 +0,0 @@
-ServerName httpd_inets_FQDN
-ServerRoot /tmp/httpd_inets
-DocumentRoot /tmp/httpd_inets/docroot
-Port 8080
-SocketType essl
-
-SSLCertificateFile /tmp/httpd_inets/02.pem
-SSLCertificateKeyFile /tmp/httpd_inets/srv1.key
-SSLCACertificateFile /tmp/httpd_inets/01.pem
diff --git a/src/tools/httpd_inets.config b/src/tools/httpd_inets.config
deleted file mode 100644
index 7baa8ef..0000000
--- a/src/tools/httpd_inets.config
+++ /dev/null
@@ -1,31 +0,0 @@
-%% http://ftp.sunet.se/pub/lang/erlang/doc/apps/inets/http_server.html
-%% http://www.erlang.org/doc/man/httpd.html
-%%
-%% $ erl -config httpd_inets
-%% Erlang R15B01 (erts-5.9.1) [source] [64-bit] [smp:4:4]%% [async-threads:0] [kernel-poll:false]
-%%
-%% Eshell V5.9.1 (abort with ^G)
-%% 1> inets:start().
-%% ok
-%% 2> [_, Httpd] = inets:services().
-%% 3> {httpd, Pid} = Httpd.
-%% {httpd,<0.45.0>}
-%% 4> httpd:info(Pid).
-%% [{mime_types,[{"html","text/html"},{"htm","text/html"}]},
-%% {ipfamily,inet6fb4},
-%% {server_name,"httpd_inets_FQDN"},
-%% {ssl_certificate_file,"/tmp/httpd_inets/02.pem"},
-%% {socket_type,essl},
-%% {ssl_ca_certificate_file,"/tmp/httpd_inets/01.pem"},
-%% {ssl_certificate_key_file,"/tmp/httpd_inets/srv1.key"},
-%% {file,"httpd_config"},
-%% {server_root,"/tmp/httpd_inets"},
-%% {port,8080},
-%% {document_root,"/tmp/httpd_inets/docroot"},
-%% {bind_address,any}]
-%% 5>
-%%
-[{inets, [{services, [
- {httpd, [{proplist_file, "httpd_inets_props.conf"}]}
- %%{httpd, [{file, "httpd_config"}]}
- ]}]}].
diff --git a/src/tools/httpd_inets.erl b/src/tools/httpd_inets.erl
deleted file mode 100644
index 161d0f5..0000000
--- a/src/tools/httpd_inets.erl
+++ /dev/null
@@ -1,8 +0,0 @@
--module('httpd_inets').
--export([hello/3]).
-
-hello(SessionID, _Env, _Input) ->
- mod_esi:deliver(SessionID, [
- "Content-Type: text/html\r\n\r\n",
- "<html><body>hello, erlang world</body></html>"
- ]).
diff --git a/src/tools/httpd_inets_props.conf b/src/tools/httpd_inets_props.conf
deleted file mode 100644
index c94fed9..0000000
--- a/src/tools/httpd_inets_props.conf
+++ /dev/null
@@ -1,19 +0,0 @@
-[
- {port, 8080},
- {bind_address, {127,0,0,1}},
- {server_name, "httpd_inets_FQDN"},
- {server_root, "/tmp/httpd_inets"},
- {document_root, "/tmp/httpd_inets/docroot"},
- {socket_type, essl},
- {ssl_certificate_file, "/tmp/httpd_inets/02.pem"},
- {ssl_certificate_key_file, "/tmp/httpd_inets/srv1.key"},
- {ssl_ca_certificate_file, "/tmp/httpd_inets/01.pem"},
- {modules, [mod_alias,
- mod_auth,
- mod_esi,
- mod_get,
- mod_head,
- mod_log,
- mod_disk_log]},
- {erl_script_alias, {"/d", [httpd_inets]}}
-].