- <VirtualHost *:80>
- # Add machine's IP address (use ifconfig command)
- ServerName 127.0.0.1
- # Give an alias to to start your website url with
- WSGIDaemonProcess app user=will group=will threads=5
- WSGIScriptAlias /CustomBuild /home/will/GitHub/CustomBuild/app.wsgi
- <Directory /home/will/GitHub/CustomBuild/>
- # set permissions as per apache2.conf file
- Options FollowSymLinks
- AllowOverride None
- Require all granted
- </Directory>
- ErrorLog ${APACHE_LOG_DIR}/error.log
- LogLevel warn
- CustomLog ${APACHE_LOG_DIR}/access.log combined
- </VirtualHost>
|