Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. NameVirtualHost *:80
  2.  
  3. <VirtualHost *:80>
  4.  
  5. DocumentRoot "/var/www/wsgi/rest_api"
  6. ServerName api
  7.  
  8. WSGIDaemonProcess rest_api user=gms threads=5
  9. WSGIScriptAlias /api /var/www/wsgi/rest_api/rest_api.wsgi
  10. WSGIPassAuthorization On
  11.  
  12.  
  13. <Directory /var/www/wsgi/rest_api/rest_api>
  14. Order deny,allow
  15. Allow from all
  16. Options +Indexes
  17. </Directory>
  18. </VirtualHost>
  19. <VirtualHost *:80>
  20. DocumentRoot "/var/www/extjs/cardiocatalogqt"
  21. ServerName cardiocatalogqt
  22. Alias /cardiocatalogqt /var/www/extjs/cardiocatalogqt
  23. <Directory /var/www/extjs/cardiocatalogqt>
  24. Options Indexes FollowSymLinks
  25. AllowOverride None
  26. Order Deny,Allow
  27. Allow from all
  28. </Directory>
  29. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement