From 4247541b13fdc14caa74dd9d7c22d6397c85957c Mon Sep 17 00:00:00 2001 From: Thomas Merkel Date: Mon, 4 Aug 2014 16:55:07 +0200 Subject: [PATCH] add minimal httpd config --- copy/opt/local/etc/httpd/httpd.conf | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 copy/opt/local/etc/httpd/httpd.conf diff --git a/copy/opt/local/etc/httpd/httpd.conf b/copy/opt/local/etc/httpd/httpd.conf new file mode 100644 index 0000000..3e61048 --- /dev/null +++ b/copy/opt/local/etc/httpd/httpd.conf @@ -0,0 +1,19 @@ +## +## core - minimal apache configuration +## + +# ServerRoot: The top of the directory tree under which the server's +# configuration, error, and log files are kept. +ServerRoot "/opt/local" + +# Listen: Allows you to bind Apache to specific IP addresses and/or +# ports, instead of the default. See also the +# directive. +Listen 80 +Listen 443 + +# Various default settings +Include conf.d/*.conf + +# Virtual hosts +Include vhosts/*.conf