第二十一周
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第二十一周相关的知识,希望对你有一定的参考价值。
配置nginx反向代理,实现api.x.com域名代理本地9001端口1、编辑hosts文件
192.168.43.157 api.x.com
2、编辑配置,http{}中添加配置:
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;
}
}
3、重新加载配置:
nginx -s reload
4、效果:
以上是关于第二十一周的主要内容,如果未能解决你的问题,请参考以下文章