Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2012
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. User apache
  2. Group apache
  3. ServerTokens ProductOnly
  4. ServerSignature Off
  5.  
  6. <Directory />
  7. Options FollowSymLinks
  8. Order deny,allow
  9. Deny from all
  10. </Directory>
  11.  
  12. Alias /phpMyAdmin /usr/share/phpMyAdmin
  13. Alias /phpmyadmin /usr/share/phpMyAdmin
  14.  
  15. <Directory "/usr/share/phpMyAdmin" />
  16. Options FollowSymLinks
  17. DirectoryIndex index.php
  18. <IfModule mod_php5.c>
  19. AddType application/x-httpd-php .php
  20. php_flag magic_quotes_gpc Off
  21. php_flag track_vars On
  22. php_flag register_globals Off
  23. php_value include_path .
  24. </IfModule>
  25. AllowOverride All
  26. Order Deny,Allow
  27. Deny from all
  28. Allow from 127.0.0.1
  29. Allow from MYHOMEIP
  30. </Directory>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement