From cfc2abc09ea45f7cea74fbb784b1fdcb38a10c59 Mon Sep 17 00:00:00 2001 From: Meutel Date: Sat, 17 Dec 2016 10:11:08 +0100 Subject: [PATCH] httpd config --- config/httpd.conf | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 config/httpd.conf diff --git a/config/httpd.conf b/config/httpd.conf new file mode 100644 index 0000000..b9563e8 --- /dev/null +++ b/config/httpd.conf @@ -0,0 +1,11 @@ +# /etc/httpd.conf +prefork 2 +server "default" { + listen on * port 80 + root "/htdocs" + location "/cgi-bin/*" { + fastcgi + root "/" + } +} +