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://1.92.109.79:30203/; } location /minio/ { client_max_body_size 500m; 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 { } }