server { listen 8000; server_name localhost; location / { root /usr/share/nginx/feedflow/html/dist; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; }}server { listen 8001; server_name localhost; location / { root /usr/share/nginx/adminWeb/html/dist; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; }}server { listen 8002; server_name localhost; location / { root /usr/share/nginx/dueOfficialWeb/html/dist; index index.html index.htm; try_files $uri $uri/ /index.html; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; }}server { listen 80; server_name www.dueoffical.com; location / { proxy_pass http://localhost:8002; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; }}server { listen 8003; server_name localhost; location / { root /usr/share/nginx/hxwbOfficialWeb/html/dist/prod; index index.html index.htm; try_files $uri $uri/ /index.html; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; }}server { listen 80; server_name www.huaxiawanbang.com; location / { proxy_pass http://localhost:8003; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; }}