Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. Alias /cacti /opt/cacti
  2.  
  3. <Directory /opt/cacti>
  4. Options +FollowSymLinks
  5. AllowOverride None
  6. <IfVersion >= 2.3>
  7. Require all granted
  8. </IfVersion>
  9. <IfVersion < 2.3>
  10. Order Allow,Deny
  11. Allow from all
  12. </IfVersion>
  13.  
  14. AddType application/x-httpd-php .php
  15.  
  16. <IfModule mod_php.c>
  17. php_flag magic_quotes_gpc Off
  18. php_flag short_open_tag On
  19. php_flag register_globals Off
  20. php_flag register_argc_argv On
  21. php_flag track_vars On
  22. # this setting is necessary for some locales
  23. php_value mbstring.func_overload 0
  24. php_value include_path .
  25. </IfModule>
  26.  
  27. DirectoryIndex index.php
  28. </Directory>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement