Advertisement
Guest User

Untitled

a guest
Jan 17th, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.49 KB | None | 0 0
  1. <Directory />
  2.     AllowOverride none
  3.     Require all denied
  4. </Directory>
  5.  
  6. <Directory /var/www/>
  7.    Options -Indexes +FollowSymLinks
  8.    AllowOverride None
  9.    Require all granted
  10. </Directory>
  11.  
  12. DocumentRoot "/var/www/html"
  13.  
  14. <Directory "/var/www/html">
  15.     Options Indexes FollowSymLinks Includes ExecCGI
  16.     AllowOverride None
  17.     Require all granted
  18. </Directory>
  19.  
  20. <Directory "${SRVROOT}/cgi-bin">
  21.     AllowOverride None
  22.     Options None
  23.     Require all granted
  24. </Directory>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement