Advertisement
Guest User

Untitled

a guest
Aug 11th, 2018
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. ServerRoot "/etc/httpd"
  2.  
  3. Listen 80
  4.  
  5. Include conf.modules.d/*.conf
  6.  
  7. User apache
  8. Group apache
  9.  
  10. ServerAdmin root@localhost
  11.  
  12. <Directory />
  13. Options Indexes
  14. Options FollowSymLinks
  15. AllowOverride All
  16. #Require all denied
  17. </Directory>
  18.  
  19. DocumentRoot "/var/www/html"
  20.  
  21. <Directory "/var/www">
  22.  
  23. Options Indexes
  24. Options FollowSymLinks
  25. AllowOverride All
  26. #Require all granted
  27.  
  28. </Directory>
  29.  
  30. <Directory "/var/www/html">
  31.  
  32. Options Indexes
  33. Options FollowSymLinks
  34. AllowOverride All
  35.  
  36. </Directory>
  37.  
  38. #SymLink to archived directory
  39. <Directory "/var/www/html/archive">
  40.  
  41. Options Indexes
  42. Options FollowSymLinks
  43. AllowOverride All
  44.  
  45. </Directory>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement