increase fastcgi timeouts

This commit is contained in:
aptalca 2019-10-23 18:22:35 -04:00 committed by Ryan Kuba
parent 640ef87af6
commit daa2bd0be8
3 changed files with 4 additions and 3 deletions

View File

@ -193,6 +193,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
## Versions
* **23.10.19:** - Increase fastcgi timeouts (existing users need to manually update).
* **19.09.19:** - Update project website url.
* **28.06.19:** - Rebasing to alpine 3.10.
* **05.05.19:** - Rebase to alpine 3.9, use new armv7 image format.

View File

@ -38,6 +38,7 @@ app_setup_block: |
More info at [lychee]({{ project_url }}).
# changelog
changelogs:
- { date: "23.10.19:", desc: "Increase fastcgi timeouts (existing users need to manually update)." }
- { date: "19.09.19:", desc: "Update project website url." }
- { date: "28.06.19:", desc: "Rebasing to alpine 3.10." }
- { date: "05.05.19:", desc: "Rebase to alpine 3.9, use new armv7 image format." }

View File

@ -18,11 +18,10 @@ server {
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
# With php7-cgi alone:
fastcgi_pass 127.0.0.1:9000;
# With php7-fpm:
#fastcgi_pass unix:/var/run/php7-fpm.sock;
fastcgi_index index.php;
fastcgi_read_timeout 1800;
fastcgi_send_timeout 1800;
include /etc/nginx/fastcgi_params;
}