diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-04-15 15:49:11 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-04-15 17:11:03 +0200 |
commit | ea99e1184d05d08e1980ade697c25bc5fe36397a (patch) | |
tree | 4b5b150da0745320b5d84577d8102cdb28ea3b3e /lib | |
parent | b0e68d039c17c26013460f890c148595652b5376 (diff) | |
download | nextcloud-server-ea99e1184d05d08e1980ade697c25bc5fe36397a.tar.gz nextcloud-server-ea99e1184d05d08e1980ade697c25bc5fe36397a.zip |
Add well-known redirects to htaccess
Fixes:
http://bugs.owncloud.org/thebuggenie/owncloud/issues/oc-232
http://bugs.owncloud.org/thebuggenie/owncloud/issues/oc-445
Diffstat (limited to 'lib')
-rw-r--r-- | lib/setup.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/setup.php b/lib/setup.php index 3e46a3dcc9a..3dca3c50918 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -296,15 +296,21 @@ class OC_Setup { * create .htaccess files for apache hosts */ private static function createHtaccess() { + $content = "ErrorDocument 403 ".OC::$WEBROOT."/core/templates/403.php\n";//custom 403 error page $content = "ErrorDocument 404 ".OC::$WEBROOT."/core/templates/404.php\n";//custom 404 error page $content.= "<IfModule mod_php5.c>\n"; $content.= "php_value upload_max_filesize 512M\n";//upload limit $content.= "php_value post_max_size 512M\n"; - $content.= "SetEnv htaccessWorking true\n"; + $content.= "php_value memory_limit 512M\n"; + $content.= "<IfModule env_module>\n"; + $content.= " SetEnv htaccessWorking true\n"; + $content.= "</IfModule>\n"; $content.= "</IfModule>\n"; $content.= "<IfModule mod_rewrite.c>\n"; $content.= "RewriteEngine on\n"; $content.= "RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization},last]\n"; + $content.= "RewriteRule ^.well-known/carddav /apps/contacts/carddav.php [R]\n"; + $content.= "RewriteRule ^.well-known/caldav /apps/calendar/caldav.php [R]\n"; $content.= "</IfModule>\n"; $content.= "Options -Indexes\n"; @file_put_contents(OC::$SERVERROOT.'/.htaccess', $content); //supress errors in case we don't have permissions for it |