daily pastebin goal
55%
SHARE
TWEET

Untitled

a guest Mar 25th, 2016 57 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  # cat /etc/apache2/mods-enabled/userdir.conf
  2. <IfModule mod_userdir.c>
  3.     UserDir public_html
  4.     UserDir disabled root
  5.  
  6.     <Directory /home/*/public_html>
  7.         ##AllowOverride FileInfo AuthConfig Limit Indexes
  8.         ##Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
  9.         AllowOverride all
  10.                 Options MultiViews Indexes SymLinksIfOwnerMatch
  11.         Require all granted
  12.         <Limit GET POST OPTIONS>
  13.             Require all granted
  14.         </Limit>
  15.         <LimitExcept GET POST OPTIONS>
  16.             Require all denied
  17.         </LimitExcept>
  18.     </Directory>
  19. </IfModule>
RAW Paste Data
Top