linux 之 web 架构 Nginx 配置本机反向代理演练
配置nginx反向代理,实现api.x.com域名代理本地9001端口
1.安装ngnix,启动服务
[root@chujiapeng api]#yum install nginx -y [root@chujiapeng api]#systemctl enable --now nginx
2.准备配置文件
[root@chujiapeng api]# vim /etc/nginx/conf.d/api.conf
server { listen 80; server_name api.x.com; location / { proxy_pass http://127.0.0.1:9001/; } } server { listen 9001; server_name 127.0.0.1; location / { root /data/api; index index.html; } }
3.准备测试数据
[root@chujiapeng api]# mkdir -p /data/api [root@chujiapeng api]# echo "this is api index page port is 9001" >/data/api/index.html
4、重启服务
[root@chujiapeng api]#systemctl restart nginx
5、准备hosts 文件
打开路径:C:\Windows\System32\drivers\etc 修改host文件 192.168.146.128 api.x.com
6.测试
浏览器打开网址 http://api.x.com/
jiapengchu
posted on 2021-08-25 21:35 jiapengchu 阅读(140) 评论(0) 编辑 收藏 举报