# By default, Savane expect these to be configured directly in apache 
# conffiles.
# 
# But if it is not the case, it should be able usually to rely on these.

# If you want to override the default configuration path:
#SetEnv SAVANE_CONF /etc/savane/

ErrorDocument 404 /404.php

# PHP conf
php_flag register_globals off
php_flag magic_quotes_gpc off
php_flag file_uploads on

php_flag display_errors on
php_flag log_errors on

# Does not work in .htaccess, put it in your apache.conf:
# Security shield
#php_admin_value disable_functions exec,passthru,popen,shell_exec,system
#php_admin_flag allow_url_fopen off
# Set error_reporting=E_ALL|E_NOTICE:
#php_value error_reporting 8191

DirectoryIndex index.php index.html

<Files ~ "^(users|us|u|projects|pr|p|file)$">
  SetHandler application/x-httpd-php
</Files>
