Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nginx / Lua based approach to Open Graph tags #422

Draft
wants to merge 18 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
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
Next Next commit
client/nginx: increase timeouts
  • Loading branch information
robobenklein committed Jul 9, 2021
commit f96274033b6a4ee789e257b41bad69ab461b9229
3 changes: 3 additions & 0 deletions client/nginx.conf.docker
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ http {
gzip_proxied expired no-cache no-store private auth;
gzip_types text/plain application/json;

proxy_connect_timeout 180s;
proxy_send_timeout 300s;
proxy_read_timeout 600s;
if ($request_uri ~* "/api/(.*)") {
proxy_pass http://backend/$1;
}
Expand Down