1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/wallabag2_ynh.git synced 2024-10-01 13:35:06 +02:00

Extend timeouts for import/export operations:

- for Nginx in nginx.conf
- add a php-fpm.ini file to handle FPM timeout
This commit is contained in:
Jimmy Monin 2017-06-03 17:10:21 +02:00
parent 2be11aab10
commit 05b42a4b5e
2 changed files with 5 additions and 0 deletions

View file

@ -5,6 +5,10 @@ location __PATH__/ {
rewrite ^ https://$server_name$request_uri? permanent;
}
client_body_timeout 60m;
proxy_read_timeout 60m;
fastcgi_read_timeout 60m;
try_files $uri @__NAME__;
location ~ ^__PATH__/app\.php(/|$) {

1
conf/php-fpm.ini Normal file
View file

@ -0,0 +1 @@
max_execution_time=3600