12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- server {
- listen 80;
- listen [::]:80;
- server_name jzo2o-operation-test.itheima.net;
- client_body_timeout 10m;
- client_max_body_size 30m;
-
-
- location / {
- root /usr/share/nginx/html;
- index index.html index.htm;
- }
- location /api/ {
- proxy_pass https://jzo2o-api-test.itheima.net/;
- client_body_timeout 10m;
- }
-
-
-
- error_page 500 502 503 504 /50x.html;
- location = /50x.html {
- root /usr/share/nginx/html;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
|