Advertisement
Guest User

httpd

a guest
Mar 29th, 2014
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1.  
  2. ServerRoot "/etc/httpd"
  3. Listen 80
  4.  
  5.  
  6. Include conf.modules.d/*.conf
  7.  
  8. User ipmedia
  9. Group apache
  10.  
  11. ServerAdmin root@localhost
  12.  
  13. ServerName localhost
  14.  
  15. <Directory /home>
  16. AllowOverride all
  17. Require all granted
  18. </Directory>
  19.  
  20. DocumentRoot "/home/ivnbrv/Dropbox"
  21.  
  22. <Directory "/home/ivnbrv/Dropbox">
  23. Options Indexes FollowSymLinks
  24. #AllowOverride AuthConfig FileInfo
  25. AllowOverride all
  26. Order deny,allow
  27. Allow from all
  28. </Directory>
  29.  
  30. <DirectoryMatch /home/ivnbrv/Dropbox/(.)*/>
  31. Options +Indexes
  32. </DirectoryMatch>
  33.  
  34.  
  35. <IfModule dir_module>
  36. DirectoryIndex index.html
  37. </IfModule>
  38.  
  39.  
  40. <Files ".ht*">
  41. Require all granted
  42. </Files>
  43.  
  44.  
  45. ErrorLog "logs/error_log"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement