diff options
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | httpd_props.conf | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2efdd34 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +build all: + erl -make +clean: + -rm ebin/*.beam diff --git a/httpd_props.conf b/httpd_props.conf index aa1daf0..09b9338 100644 --- a/httpd_props.conf +++ b/httpd_props.conf @@ -16,5 +16,6 @@ {socket_type, {essl, % See ssl(3erl) for SSL options. [{certfile, "ctls/webroot/certs/webcert.pem"}, - {keyfile, "ctls/webroot/keys/webkey.pem"}]}} + {keyfile, "ctls/webroot/keys/webkey.pem"}, + {cacertfile, "ctls/webroot/certs/webcert.pem"}]}} ]. |