You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

phpvirtualbox.conf 706B

12345678910111213141516171819202122232425262728293031
  1. Alias /phpvirtualbox /usr/share/phpvirtualbox
  2. <Directory /usr/share/phpvirtualbox>
  3. <IfModule mod_dir.c>
  4. DirectoryIndex index.html index.php
  5. </IfModule>
  6. AllowOverride None
  7. # Only allow connections from localhost:
  8. Require local
  9. <IfModule mod_php.c>
  10. php_flag magic_quotes_gpc Off
  11. php_flag track_vars On
  12. #php_value include_path .
  13. </IfModule>
  14. <IfModule !mod_php.c>
  15. <IfModule mod_actions.c>
  16. <IfModule mod_cgi.c>
  17. AddType application/x-httpd-php .php
  18. Action application/x-httpd-php /cgi-bin/php
  19. </IfModule>
  20. <IfModule mod_cgid.c>
  21. AddType application/x-httpd-php .php
  22. Action application/x-httpd-php /cgi-bin/php
  23. </IfModule>
  24. </IfModule>
  25. </IfModule>
  26. </Directory>