Advertisement
Guest User

Config Urb

a guest
Aug 28th, 2015
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerAdmin albatros.local@localhost
  3. ServerName www.local.urbania.ec
  4. ServerAlias local.urbania.ec
  5. DocumentRoot /var/www/local.urbania.ec/src/public
  6. ErrorLog ${APACHE_LOG_DIR}/error.log
  7. CustomLog ${APACHE_LOG_DIR}/access.log combined
  8.  
  9. <Directory />
  10. Options FollowSymLinks
  11. AllowOverride None
  12. </Directory>
  13.  
  14. <Directory /var/www/local.urbania.ec/src/public >
  15. Options Indexes FollowSymLinks MultiViews
  16. AllowOverride All
  17. Order allow,deny
  18. allow from all
  19. </Directory>
  20.  
  21. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  22. <Directory "/usr/lib/cgi-bin">
  23. AllowOverride None
  24. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  25. Order allow,deny
  26. Allow from all
  27. </Directory>
  28.  
  29. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement