Skip to content
Snippets Groups Projects
Select Git revision
  • d49e8ffb5ed4be03f05b607d9b673e4543b94d21
  • master default protected
2 results

.htaccess

Blame
    • Myles McNamara's avatar
      ef2e8402
      remove php_value · ef2e8402
      Myles McNamara authored
      php_value can only be used with mod_php, using it with FCGI will cause 500 Internal Server errors.  This needs to be set in php.ini manually or set using ini_set().
      ef2e8402
      History
      remove php_value
      Myles McNamara authored
      php_value can only be used with mod_php, using it with FCGI will cause 500 Internal Server errors.  This needs to be set in php.ini manually or set using ini_set().
    .htaccess 540 B
    ErrorDocument 403 /core/templates/403.php
    ErrorDocument 404 /core/templates/404.php
    <IfModule mod_php5.c>
    php_value upload_max_filesize 512M
    php_value post_max_size 512M
    php_value memory_limit 512M
    <IfModule env_module>
      SetEnv htaccessWorking true
    </IfModule>
    </IfModule>
    <IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization},last]
    RewriteRule ^.well-known/carddav /apps/contacts/carddav.php [R]
    RewriteRule ^.well-known/caldav /apps/calendar/caldav.php [R]
    </IfModule>
    Options -Indexes