一、编辑hosts文件html
192.168.43.157 api.x.com
二、编辑配置,http{}中添加配置:nginx
server { listen 80; server_name api.x.com; location / { proxy_pass http://127.0.0.1:9001/; } } server { listen 9001; root /data/site1/api; location / { index index.html; } }
三、从新加载配置:api
nginx -s reload
四、效果:ide