increased timeouts so that owncloud properly loads with larger db

This commit is contained in:
jkaberg 2014-08-13 07:30:32 +02:00
parent d03bc0cefa
commit 7024b428ad
2 changed files with 9 additions and 2 deletions

View File

@ -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;
}

View File

@ -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?