12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- server {
- listen 80;
- listen [::]:80;
- server_name localhost;
-
- 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;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- location /supplier/ {
- proxy_pass http://3dshow-supplier:8888/supplier/;
- }
- location /customer/ {
- proxy_pass http://3dshow-customer:8888/customer/;
- }
- location /supplyUser/ {
- proxy_pass http://3dshow-supply-user:8908/usercenter/;
- }
- location /customerUser/ {
- proxy_pass http://3dshow-customer-user:8908/usercenter/;
- }
-
-
-
-
-
-
-
-
- }
|