Advertisement
Guest User

Untitled

a guest
May 10th, 2015
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerAdmin webmaster@localhost
  3.  
  4. DocumentRoot /home/rabdelaz/SD_Dashboard/www
  5. <Directory />
  6. Options FollowSymLinks
  7. AllowOverride None
  8. require all granted
  9. </Directory>
  10. <Directory /home/rabdelaz/SD_Dashboard/www/>
  11. Options Indexes FollowSymLinks Includes ExecCGI
  12. #Options Indexes FollowSymLinks MultiViews
  13. AllowOverride None
  14. Order allow,deny
  15. require all granted
  16. </Directory>
  17.  
  18. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  19. <Directory "/usr/lib/cgi-bin">
  20. AllowOverride None
  21. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  22. Order allow,deny
  23. #Allow from all
  24. require all granted
  25. </Directory>
  26.  
  27. ErrorLog ${APACHE_LOG_DIR}/error.log
  28.  
  29. # Possible values include: debug, info, notice, warn, error, crit,
  30. # alert, emerg.
  31. LogLevel warn
  32.  
  33. CustomLog ${APACHE_LOG_DIR}/access.log combined
  34.  
  35. Alias /doc/ "/usr/share/doc/"
  36. <Directory "/usr/share/doc/">
  37. Options Indexes MultiViews FollowSymLinks
  38. AllowOverride None
  39. Order deny,allow
  40. #Deny from all
  41. Allow from all
  42. #127.0.0.0/255.0.0.0 ::1/128
  43. </Directory>
  44.  
  45. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement