From bb543fd9532c4fa2a26f82a37c45f74c9341f6d7 Mon Sep 17 00:00:00 2001 From: iglocska Date: Mon, 22 Jun 2020 15:06:59 +0200 Subject: [PATCH] new: [conf] file added as an example - to ease testing a simple http only conf file for cerebrate --- INSTALL/cerebrate_dev.conf | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 INSTALL/cerebrate_dev.conf diff --git a/INSTALL/cerebrate_dev.conf b/INSTALL/cerebrate_dev.conf new file mode 100755 index 0000000..f6f67db --- /dev/null +++ b/INSTALL/cerebrate_dev.conf @@ -0,0 +1,19 @@ +# This configuration is purely meant for local installations for development / testing +# Using HTTP on an unhardened apache is by no means meant to be used in any production environment +Listen 8000 + + ServerAdmin me@me.local + ServerName cerebrate.local + DocumentRoot /var/www/cerebrate/webroot + + Options -Indexes + AllowOverride all + Order allow,deny + allow from all + + + LogLevel warn + ErrorLog /var/log/apache2/cerebrate.local_error.log + CustomLog /var/log/apache2/cerebrate.local_access.log combined + ServerSignature Off +