Evo.Logger/server/nginx.conf
2023-09-11 11:50:57 +03:00

26 lines
673 B
Nginx Configuration File

server {
listen 80;
gzip on;
gzip_min_length 1000;
gzip_proxied any;
gzip_comp_level 1;
gzip_types text/css text/javascript text/xml text/plain text/x-component application/javascript application/json application/xml application/rss+xml font/truetype font/opentype application/vnd.ms-fontobject image/svg+xml;
gzip_vary on;
gzip_disable "msie6";
include /etc/nginx/mime.types;
location / {
proxy_pass $URL_LOG;
}
location = /health {
access_log off;
add_header 'Content-Type' 'application/json';
return 200 'UP';
}
}