fix(uwsgi): Make sure uWSGI talks proper HTTP/1.1 (#499)
This patch brings back the HTTP/1.1 related settings for uWSGI to fix #486 as apparently Relay tries to talk to Sentry Web with keep alives where uWSGI terminates the connection unexpectedly. It also ports some configs for uWSGI and nginx from single-tenant.
This commit is contained in:
@ -1,50 +1,73 @@
|
||||
user nginx;
|
||||
worker_processes 1;
|
||||
user nginx;
|
||||
worker_processes 1;
|
||||
|
||||
error_log /var/log/nginx/error.log warn;
|
||||
pid /var/run/nginx.pid;
|
||||
error_log /var/log/nginx/error.log warn;
|
||||
pid /var/run/nginx.pid;
|
||||
|
||||
|
||||
events {
|
||||
worker_connections 1024;
|
||||
worker_connections 1024;
|
||||
}
|
||||
|
||||
|
||||
http {
|
||||
default_type application/octet-stream;
|
||||
default_type application/octet-stream;
|
||||
|
||||
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
|
||||
'$status $body_bytes_sent "$http_referer" '
|
||||
'"$http_user_agent" "$http_x_forwarded_for"';
|
||||
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
|
||||
'$status $body_bytes_sent "$http_referer" '
|
||||
'"$http_user_agent" "$http_x_forwarded_for"';
|
||||
|
||||
sendfile on;
|
||||
keepalive_timeout 65;
|
||||
sendfile on;
|
||||
tcp_nopush on;
|
||||
tcp_nodelay on;
|
||||
reset_timedout_connection on;
|
||||
|
||||
upstream relay {
|
||||
server relay:3000;
|
||||
}
|
||||
keepalive_timeout 75s;
|
||||
|
||||
upstream sentry {
|
||||
server web:9000;
|
||||
}
|
||||
gzip off;
|
||||
server_tokens off;
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
# use the docker DNS server to resolve ips for relay and sentry containers
|
||||
resolver 127.0.0.11 ipv6=off;
|
||||
client_max_body_size 100M;
|
||||
server_names_hash_bucket_size 64;
|
||||
types_hash_max_size 2048;
|
||||
types_hash_bucket_size 64;
|
||||
client_max_body_size 5m;
|
||||
|
||||
proxy_redirect off;
|
||||
proxy_set_header Host $host;
|
||||
proxy_http_version 1.1;
|
||||
proxy_redirect off;
|
||||
proxy_buffering off;
|
||||
proxy_next_upstream error timeout invalid_header http_502 http_503 non_idempotent;
|
||||
proxy_next_upstream_tries 2;
|
||||
|
||||
location /api/store/ {
|
||||
proxy_pass http://relay;
|
||||
}
|
||||
location ~ ^/api/[1-9]\d*/ {
|
||||
proxy_pass http://relay;
|
||||
}
|
||||
location / {
|
||||
proxy_pass http://sentry;
|
||||
}
|
||||
}
|
||||
# Remove the Connection header if the client sends it,
|
||||
# it could be "close" to close a keepalive connection
|
||||
proxy_set_header Connection '';
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $remote_addr;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_set_header X-Request-Id $request_id;
|
||||
proxy_read_timeout 30s;
|
||||
proxy_send_timeout 5s;
|
||||
|
||||
upstream relay {
|
||||
server relay:3000;
|
||||
}
|
||||
|
||||
upstream sentry {
|
||||
server web:9000;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
|
||||
location /api/store/ {
|
||||
proxy_pass http://relay;
|
||||
}
|
||||
location ~ ^/api/[1-9]\d*/ {
|
||||
proxy_pass http://relay;
|
||||
}
|
||||
location / {
|
||||
proxy_pass http://sentry;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user