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.
26 lines
558 B
26 lines
558 B
6 months ago
|
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;
|
||
|
client_max_body_size 500m;
|
||
|
}
|
||
|
|
||
|
location /api/ {
|
||
|
client_max_body_size 500m;
|
||
|
proxy_pass http://ax-api.sumweal.com/bkb-customer-uat/;
|
||
|
}
|
||
|
|
||
|
error_page 404 /404.html;
|
||
|
location = /40x.html {
|
||
|
}
|
||
|
|
||
|
error_page 500 502 503 504 /50x.html;
|
||
|
location = /50x.html {
|
||
|
}
|
||
|
}
|