mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 06:51:04 +01:00
removed buffering
This commit is contained in:
parent
1f73dc46f8
commit
a6e50e5041
@ -81,12 +81,17 @@ Until NC24 MariaDB version has to be used.
|
|||||||
|
|
||||||
## performance
|
## performance
|
||||||
### 504 Gateway Timeout
|
### 504 Gateway Timeout
|
||||||
- https://serverfault.com/questions/178671/nginx-php-fpm-504-gateway-time-out-error-with-almost-zero-load-on-a-test-se
|
|
||||||
- https://help.nextcloud.com/t/solved-manual-lemp-install-php-fpm-timing-out/39070
|
```bash
|
||||||
|
docker logs nextcloud_web_1 --tail 1000 | grep 504
|
||||||
|
```
|
||||||
|
|
||||||
#### See
|
#### See
|
||||||
|
- https://support.f5.com/csp/article/K48373902
|
||||||
- https://github.com/nextcloud/server/issues/25436
|
- https://github.com/nextcloud/server/issues/25436
|
||||||
- https://help.nextcloud.com/t/update-to-next-cloud-21-0-2-has-get-an-error/117028/23?page=2
|
- https://help.nextcloud.com/t/update-to-next-cloud-21-0-2-has-get-an-error/117028/23?page=2
|
||||||
|
- https://serverfault.com/questions/178671/nginx-php-fpm-504-gateway-time-out-error-with-almost-zero-load-on-a-test-se
|
||||||
|
- https://help.nextcloud.com/t/solved-manual-lemp-install-php-fpm-timing-out/39070
|
||||||
|
|
||||||
## further information
|
## further information
|
||||||
- https://github.com/nextcloud/docker/blob/master/.examples/docker-compose/with-nginx-proxy/mariadb/fpm/docker-compose.yml
|
- https://github.com/nextcloud/docker/blob/master/.examples/docker-compose/with-nginx-proxy/mariadb/fpm/docker-compose.yml
|
||||||
|
@ -25,6 +25,7 @@ http {
|
|||||||
keepalive_timeout 65;
|
keepalive_timeout 65;
|
||||||
fastcgi_send_timeout 600s;
|
fastcgi_send_timeout 600s;
|
||||||
fastcgi_read_timeout 600s;
|
fastcgi_read_timeout 600s;
|
||||||
|
proxy_buffering off;
|
||||||
|
|
||||||
#gzip on;
|
#gzip on;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user