Guest User

Untitled

a guest
May 27th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. gabeodess.conf:
  2.  
  3. <Directory "/Users/gabeodess/Sites/">
  4. Options Indexes MultiViews
  5. AllowOverride None
  6. Order allow,deny
  7. Allow from all
  8. </Directory>
  9.  
  10.  
  11.  
  12.  
  13.  
  14. httpd.conf:
  15.  
  16. <IfModule mod_php4.c>
  17. # If php is turned on, we repsect .php and .phps files.
  18. AddType application/x-httpd-php .php
  19. AddType application/x-httpd-php-source .phps
  20.  
  21. # Since most users will want index.php to work we
  22. # also automatically enable index.php
  23. <IfModule mod_dir.c>
  24. DirectoryIndex index.html index.php
  25. </IfModule>
  26. </IfModule>
  27.  
  28. <IfModule mod_rewrite.c>
  29. RewriteEngine On
  30. RewriteCond %{REQUEST_METHOD} ^TRACE
  31. RewriteRule .* - [F]
  32. </IfModule>
  33.  
  34. <IfModule mod_bonjour.c>
  35. # Only the pages of users who have edited their
  36. # default home pages will be advertised on Bonjour.
  37. RegisterUserSite customized-users
  38. #RegisterUserSite all-users
  39.  
  40. # Bonjour advertising for the primary site is off by default.
  41. #RegisterDefaultSite
  42. </IfModule>
  43.  
  44. Include /private/etc/httpd/users/*.conf
Add Comment
Please, Sign In to add comment