mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-11-22 02:17:26 +00:00
Merge branch 'owncloud' of github.com:jkaberg/mailinabox into owncloud
This commit is contained in:
commit
5ecbaa2b41
@ -31,10 +31,12 @@ server {
|
|||||||
index index.php;
|
index index.php;
|
||||||
alias /usr/local/lib/roundcubemail/;
|
alias /usr/local/lib/roundcubemail/;
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~ /mail/config/.* {
|
location ~ /mail/config/.* {
|
||||||
# A ~-style location is needed to give this precedence over the next block.
|
# A ~-style location is needed to give this precedence over the next block.
|
||||||
return 403;
|
return 403;
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~ /mail/.*\.php {
|
location ~ /mail/.*\.php {
|
||||||
# note: ~ has precendence over a regular location block
|
# note: ~ has precendence over a regular location block
|
||||||
include fastcgi_params;
|
include fastcgi_params;
|
||||||
@ -55,6 +57,7 @@ server {
|
|||||||
deny all;
|
deny all;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~ ^(/cloud)(/.+\.php)(/.*)?$ {
|
location ~ ^(/cloud)(/.+\.php)(/.*)?$ {
|
||||||
# note: ~ has precendence over a regular location block
|
# note: ~ has precendence over a regular location block
|
||||||
include fastcgi_params;
|
include fastcgi_params;
|
||||||
@ -62,17 +65,27 @@ server {
|
|||||||
fastcgi_param SCRIPT_NAME $1$2;
|
fastcgi_param SCRIPT_NAME $1$2;
|
||||||
fastcgi_param PATH_INFO $3;
|
fastcgi_param PATH_INFO $3;
|
||||||
fastcgi_param MOD_X_ACCEL_REDIRECT_ENABLED on;
|
fastcgi_param MOD_X_ACCEL_REDIRECT_ENABLED on;
|
||||||
|
fastcgi_read_timeout 630;
|
||||||
fastcgi_pass php-fpm;
|
fastcgi_pass php-fpm;
|
||||||
error_page 403 /cloud/core/templates/403.php;
|
error_page 403 /cloud/core/templates/403.php;
|
||||||
error_page 404 /cloud/core/templates/404.php;
|
error_page 404 /cloud/core/templates/404.php;
|
||||||
client_max_body_size 1G;
|
client_max_body_size 1G;
|
||||||
fastcgi_buffers 64 4K;
|
fastcgi_buffers 64 4K;
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~ ^/((caldav|carddav|webdav).*)$ {
|
location ~ ^/((caldav|carddav|webdav).*)$ {
|
||||||
# Z-Push doesn't like getting a redirect, and a plain rewrite didn't work either.
|
# Z-Push doesn't like getting a redirect, and a plain rewrite didn't work either.
|
||||||
# Properly proxying like this seems to work fine.
|
# Properly proxying like this seems to work fine.
|
||||||
proxy_pass https://$HOSTNAME/cloud/remote.php/$1;
|
proxy_pass https://$HOSTNAME/cloud/remote.php/$1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# location ^~ /cloud/data {
|
||||||
|
# internal;
|
||||||
|
# # Set 'alias' if not using the default 'datadirectory'
|
||||||
|
# # TODO: Since this is auto generated, we need a better approach!
|
||||||
|
# alias /home/user-data/owncloud;
|
||||||
|
# }
|
||||||
|
|
||||||
rewrite ^/.well-known/host-meta /cloud/public.php?service=host-meta last;
|
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/host-meta.json /cloud/public.php?service=host-meta-json last;
|
||||||
rewrite ^/.well-known/carddav /cloud/remote.php/carddav/ redirect;
|
rewrite ^/.well-known/carddav /cloud/remote.php/carddav/ redirect;
|
||||||
@ -94,8 +107,9 @@ server {
|
|||||||
|
|
||||||
# Z-Push (Microsoft Exchange ActiveSync)
|
# Z-Push (Microsoft Exchange ActiveSync)
|
||||||
location /Microsoft-Server-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_param SCRIPT_FILENAME /usr/local/lib/z-push/index.php;
|
||||||
|
fastcgi_read_timeout 630;
|
||||||
fastcgi_pass php-fpm;
|
fastcgi_pass php-fpm;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -79,7 +79,9 @@ tools/editconf.py /etc/php5/fpm/php.ini -c ';' \
|
|||||||
upload_max_filesize=16G \
|
upload_max_filesize=16G \
|
||||||
post_max_size=16G \
|
post_max_size=16G \
|
||||||
output_buffering=16384 \
|
output_buffering=16384 \
|
||||||
memory_limit=512M
|
memory_limit=512M \
|
||||||
|
max_execution_time=600 \
|
||||||
|
short_open_tag=On
|
||||||
|
|
||||||
# Download and install the mail app
|
# Download and install the mail app
|
||||||
# TODO: enable mail app in ownCloud config, not exposed afaik?
|
# TODO: enable mail app in ownCloud config, not exposed afaik?
|
||||||
|
Loading…
Reference in New Issue
Block a user