Advertisement
Squito

php7.2.conf

Dec 29th, 2018
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. <FilesMatch ".+\.ph(ar|p|tml)$">
  2. SetHandler application/x-httpd-php
  3. </FilesMatch>
  4. <FilesMatch ".+\.phps$">
  5. SetHandler application/x-httpd-php-source
  6. # Deny access to raw php sources by default
  7. # To re-enable it's recommended to enable access to the files
  8. # only in specific virtual host or directory
  9. Require all denied
  10. </FilesMatch>
  11. # Deny access to files without filename (e.g. '.php')
  12. <FilesMatch "^\.ph(ar|p|ps|tml)$">
  13. Require all denied
  14. </FilesMatch>
  15.  
  16. # Running PHP scripts in user directories is disabled by default
  17. #
  18. # To re-enable PHP in user directories comment the following lines
  19. # (from <IfModule ...> to </IfModule>.) Do NOT set it to On as it
  20. # prevents .htaccess files from disabling it.
  21. <IfModule mod_userdir.c>
  22. <Directory /home/*/public_html>
  23. php_admin_flag engine Off
  24. </Directory>
  25. </IfModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement