39 lines
780 B
Text
39 lines
780 B
Text
|
server {
|
||
|
listen 80;
|
||
|
listen [::]:80;
|
||
|
server_name localhost;
|
||
|
|
||
|
gzip on;
|
||
|
gzip_disable "msie6";
|
||
|
gzip_comp_level 6;
|
||
|
gzip_min_length 1100;
|
||
|
gzip_buffers 16 8k;
|
||
|
gzip_proxied any;
|
||
|
gzip_types
|
||
|
text/plain
|
||
|
text/css
|
||
|
text/js
|
||
|
text/xml
|
||
|
text/javascript
|
||
|
application/javascript
|
||
|
application/json
|
||
|
application/xml
|
||
|
application/rss+xml
|
||
|
image/svg+xml;
|
||
|
|
||
|
location /auth/ {
|
||
|
client_max_body_size 0;
|
||
|
proxy_pass http://localhost:8180/auth/;
|
||
|
}
|
||
|
|
||
|
location / {
|
||
|
root /usr/share/nginx/html;
|
||
|
index index.html index.htm;
|
||
|
}
|
||
|
|
||
|
error_page 500 502 503 504 /50x.html;
|
||
|
location = /50x.html {
|
||
|
root /usr/share/nginx/html;
|
||
|
}
|
||
|
|
||
|
}
|