Skip to content
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.

Disable fastcgi_intercept_errors to fix CARDDAV on OSX. #20

Merged
merged 1 commit into from
Jan 8, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nextcloud/rootfs/nginx/sites-enabled/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ server {
fastcgi_param modHeadersAvailable true;
fastcgi_param front_controller_active true;
fastcgi_pass unix:/php/run/php-fpm.sock;
fastcgi_intercept_errors on;
fastcgi_intercept_errors off;
fastcgi_request_buffering off;
fastcgi_read_timeout 1200;
}
Expand Down