Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <VirtualHost *:80>
  2.  
  3. ServerName flask-rest-example.local
  4.  
  5. WSGIScriptAlias / /home/ybenzaki/python-programming/flask-rest-example/wsgi/flask.wsgi
  6. WSGIScriptReloading On
  7.  
  8. <Directory /home/ybenzaki/python-programming/flask-rest-example>
  9. Order allow,deny
  10. Allow from all
  11. </Directory>
  12.  
  13. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement