CustomBuild.conf 629 B

12345678910111213141516
  1. <VirtualHost *:80>
  2. # Add machine's IP address (use ifconfig command)
  3. ServerName 127.0.0.1
  4. # Give an alias to to start your website url with
  5. WSGIDaemonProcess app user=will group=will threads=5
  6. WSGIScriptAlias /CustomBuild /home/will/GitHub/CustomBuild/app.wsgi
  7. <Directory /home/will/GitHub/CustomBuild/>
  8. # set permissions as per apache2.conf file
  9. Options FollowSymLinks
  10. AllowOverride None
  11. Require all granted
  12. </Directory>
  13. ErrorLog ${APACHE_LOG_DIR}/error.log
  14. LogLevel warn
  15. CustomLog ${APACHE_LOG_DIR}/access.log combined
  16. </VirtualHost>