You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
559 B

server {
listen 83;
root /usr/share/nginx/html/;
include /etc/nginx/default.d/*.conf;
location / {
index index.html index.htm;
error_page 405 =200 /index.html;
try_files $uri $uri/ /index.html;
}
location /api/ {
proxy_pass http://1.92.109.79:30204/;
}
location /minio/ {
proxy_pass https://ax-api.sumweal.com/minio/;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}