Guest User

Untitled

a guest
Mar 14th, 2018
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <VirtualHost *:80>
  2.   DocumentRoot /tmp/test/
  3.   WSGIScriptAlias / /tmp/test/test.py
  4.  
  5.   <Directory /tmp/test/>
  6.     Order deny,allow
  7.     Allow from all
  8.     Options -Indexes
  9.   </Directory>
  10.  
  11.   LogLevel warn
  12.   ErrorLog /var/log/apache2/test_error.log
  13.   CustomLog /var/log/apache2/test_access.log combined
  14. </VirtualHost>
Add Comment
Please, Sign In to add comment