signoz/deploy/docker/common/nginx-config.conf

64 lines
1.8 KiB
Plaintext
Raw Normal View History

map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
2021-01-16 12:18:54 +05:30
server {
listen 3301;
2021-01-16 12:18:54 +05:30
server_name _;
2021-06-01 16:45:45 +05:30
gzip on;
gzip_static on;
2021-06-01 16:45:45 +05:30
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
gzip_proxied any;
gzip_vary on;
gzip_comp_level 6;
gzip_buffers 16 8k;
gzip_http_version 1.1;
2021-06-01 16:45:45 +05:30
# to handle uri issue 414 from nginx
client_max_body_size 24M;
large_client_header_buffers 8 128k;
2021-01-16 12:18:54 +05:30
location / {
if ( $uri = '/index.html' ) {
add_header Cache-Control no-store always;
}
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
2021-01-16 12:18:54 +05:30
}
location ~ ^/api/(v1|v3)/logs/(tail|livetail){
proxy_pass http://query-service:8080;
proxy_http_version 1.1;
# connection will be closed if no data is read for 600s between successive read operations
proxy_read_timeout 600s;
# dont buffer the data send it directly to client.
proxy_buffering off;
proxy_cache off;
}
2021-01-16 12:18:54 +05:30
location /api {
proxy_pass http://query-service:8080/api;
# connection will be closed if no data is read for 600s between successive read operations
proxy_read_timeout 600s;
2021-01-16 12:18:54 +05:30
}
location /ws {
proxy_pass http://query-service:8080/ws;
proxy_http_version 1.1;
proxy_set_header Upgrade "websocket";
proxy_set_header Connection "upgrade";
proxy_read_timeout 86400;
}
2021-01-16 12:18:54 +05:30
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
2021-01-16 12:18:54 +05:30
}
}