From 7024b428ad9f83cfccaa8d39cae525b010cf461b Mon Sep 17 00:00:00 2001 From: jkaberg Date: Wed, 13 Aug 2014 07:30:32 +0200 Subject: [PATCH] increased timeouts so that owncloud properly loads with larger db --- conf/nginx.conf | 7 ++++++- setup/owncloud.sh | 4 +++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index ff184ca..25da406 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -31,10 +31,12 @@ server { index index.php; alias /usr/local/lib/roundcubemail/; } + location ~ /mail/config/.* { # A ~-style location is needed to give this precedence over the next block. return 403; } + location ~ /mail/.*\.php { # note: ~ has precendence over a regular location block include fastcgi_params; @@ -62,6 +64,7 @@ server { fastcgi_param SCRIPT_NAME $1$2; fastcgi_param PATH_INFO $3; fastcgi_param MOD_X_ACCEL_REDIRECT_ENABLED on; + fastcgi_read_timeout 630; fastcgi_pass php-fpm; error_page 403 /cloud/core/templates/403.php; error_page 404 /cloud/core/templates/404.php; @@ -73,6 +76,7 @@ server { # Properly proxying like this seems to work fine. proxy_pass https://$HOSTNAME/cloud/remote.php/$1; } + rewrite ^/.well-known/host-meta /cloud/public.php?service=host-meta last; rewrite ^/.well-known/host-meta.json /cloud/public.php?service=host-meta-json last; rewrite ^/.well-known/carddav /cloud/remote.php/carddav/ redirect; @@ -94,8 +98,9 @@ server { # Z-Push (Microsoft Exchange ActiveSync) location /Microsoft-Server-ActiveSync { - include /etc/nginx/fastcgi_params; + include /etc/nginx/fastcgi_params; fastcgi_param SCRIPT_FILENAME /usr/local/lib/z-push/index.php; + fastcgi_read_timeout 630; fastcgi_pass php-fpm; } diff --git a/setup/owncloud.sh b/setup/owncloud.sh index 4e164d9..d232fb7 100755 --- a/setup/owncloud.sh +++ b/setup/owncloud.sh @@ -77,7 +77,9 @@ tools/editconf.py /etc/php5/fpm/php.ini \ upload_max_filesize=16G \ post_max_size=16G \ output_buffering=16384 \ - memory_limit=512M + memory_limit=512M \ + max_execution_time=600 \ + short_open_tag=On # Download and install the mail app # TODO: enable mail app in ownCloud config, not exposed afaik?