wojaovlad

sites

Feb 16th, 2015
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerName smart_house
  3.  
  4. WSGIDaemonProcess smart_house processes=2 threads=15 display-name=%{GROUP} python-path=/var/www/smart_house
  5. WSGIProcessGroup smart_house
  6.  
  7. WSGIScriptAlias / /var/www/smart_house/smart_house/wsgi.py
  8.  
  9. <Directory /var/www/smart_house/smart_house>
  10. Order allow,deny
  11. allow from all
  12. </Directory>
  13.  
  14. LogLevel warn
  15.  
  16. Alias /static/ /var/www/smart_house/static/
  17. <Directory /var/www/smart_house/>
  18. Options Indexes MultiViews FollowSymLinks
  19. AllowOverride None
  20. Order deny,allow
  21. Allow from all
  22. </Directory>
  23. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment