proxy.conf.template 464 B

1234567891011
  1. # Please do not directly edit this file. Instead, modify the .env variables related to NGINX configuration.
  2. proxy_set_header Host $host;
  3. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  4. proxy_set_header X-Forwarded-Proto $scheme;
  5. proxy_set_header X-Forwarded-Port $server_port;
  6. proxy_http_version 1.1;
  7. proxy_set_header Connection "";
  8. proxy_buffering off;
  9. proxy_read_timeout ${NGINX_PROXY_READ_TIMEOUT};
  10. proxy_send_timeout ${NGINX_PROXY_SEND_TIMEOUT};