Advertisement
evenjc

Untitled

Oct 19th, 2020
1,085
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.37 KB | None | 0 0
  1. <VirtualHost *>
  2.     ServerName nobody.likes-pie.com
  3.  
  4.     WSGIDaemonProcess yourapplication user=evenjc group=group1 threads=5
  5.     WSGIScriptAlias / /home/evenjc/webapp/main.wsgi
  6.  
  7.     <Directory /home/evenjc/webapp>
  8.         WSGIProcessGroup main
  9.         WSGIApplicationGroup %{GLOBAL}
  10.         Order deny,allow
  11.         Allow from all
  12.     </Directory>
  13. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement