new: [conf] file added as an example

- to ease testing a simple http only conf file for cerebrate
remotes/origin/main
iglocska 2020-06-22 15:06:59 +02:00
parent cce2955341
commit bb543fd953
No known key found for this signature in database
GPG Key ID: BEA224F1FEF113AC
1 changed files with 19 additions and 0 deletions

19
INSTALL/cerebrate_dev.conf Executable file
View File

@ -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
<VirtualHost *:8000>
ServerAdmin me@me.local
ServerName cerebrate.local
DocumentRoot /var/www/cerebrate/webroot
<Directory /var/www/cerebrate/webroot>
Options -Indexes
AllowOverride all
Order allow,deny
allow from all
</Directory>
LogLevel warn
ErrorLog /var/log/apache2/cerebrate.local_error.log
CustomLog /var/log/apache2/cerebrate.local_access.log combined
ServerSignature Off
</VirtualHost>