Advertisement
Guest User

root

a guest
May 6th, 2009
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <IfModule mod_suphp.c>
  2. AddType application/x-httpd-php .php .php3 .php4 .php5 .phtml
  3. suPHP_AddHandler application/x-httpd-php
  4.  
  5. <Directory />
  6. suPHP_Engine on
  7. </Directory>
  8.  
  9. # <Directory /home/*/public_html>
  10. # suPHP_Engine on
  11. # </Directory>
  12.  
  13. # By default, disable suPHP for debian packaged web applications as files
  14. # are owned by root and cannot be executed by suPHP because of min_uid.
  15. <Directory /usr/share>
  16. suPHP_Engine on
  17. </Directory>
  18.  
  19. # # Use a specific php config file (a dir which contains a php.ini file)
  20. # suPHP_ConfigPath /etc/php4/cgi/suphp/
  21. # # Tells mod_suphp NOT to handle requests with the type <mime-type>.
  22. # suPHP_RemoveHandler <mime-type>
  23. </IfModule>
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement