Skip to content

Commit

Permalink
added timeouts for molgpka and pkasolver
Browse files Browse the repository at this point in the history
  • Loading branch information
popenc committed Sep 24, 2024
1 parent 0a7888a commit 65ca6e6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,19 @@ server {
location /molgpka {
include /etc/nginx/uwsgi_params;
uwsgi_pass cts_molgpka_flask;
proxy_read_timeout 1200;
proxy_send_timeout 1200;
uwsgi_read_timeout 1200s;
uwsgi_send_timeout 1200s;
}

location /pkasolver {
include /etc/nginx/uwsgi_params;
uwsgi_pass cts_pkasolver_flask;
proxy_read_timeout 1200;
proxy_send_timeout 1200;
uwsgi_read_timeout 1200s;
uwsgi_send_timeout 1200s;
}


Expand Down

0 comments on commit 65ca6e6

Please sign in to comment.