博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx反向代理本地 单台wed -使用域名代理
阅读量:4970 次
发布时间:2019-06-12

本文共 1180 字,大约阅读时间需要 3 分钟。

环境:本地外网ip:123.58.251.1661、配置index.html网页[root@host-10-1-1-161 conf.d]# cat /web/sing/index.html 

www.test1.com

2、配置conf.d目录下配置文件[root@host-10-1-1-161 conf.d]# pwd/etc/nginx/conf.d[root@host-10-1-1-161 conf.d]# lstest1.conf test2.conf test3.conf[root@host-10-1-1-161 conf.d]# cat test1.conf server {listen 8083;server_name 127.0.0.1:8083;location / {root /web/sing/;index index.html index.htm;}}[root@host-10-1-1-161 conf.d]# cat test3.conf upstream abc.com { server 127.0.0.1:8083 fail_timeout=20s; #server 127.0.0.1:8086 fail_timeout=20s; #ip_hash; 打开后就会访问到一台上 }server { listen 80; server_name oa.test.com; location / { #反向代理的地址 proxy_pass http://abc.com; }}3、配置hosts[root@host-10-1-1-161 conf.d]# cat /etc/hosts127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4::1 localhost localhost.localdomain localhost6 localhost6.localdomain6123.58.251.166 oa.test.com [root@host-10-1-1-161 conf.d]# nginx -s reload4、开始访问 注意:要从百度访问必须注册备案域名[root@host-10-1-1-161 ~]# curl http://oa.test.com

www.test1.com

 

转载于:https://www.cnblogs.com/effortsing/p/10012403.html

你可能感兴趣的文章
10分钟学习pandas
查看>>
从vue的组件传值着手浅谈观察者模式
查看>>
推翻自己和过往,重学自定义View
查看>>
QML中的state 状态
查看>>
tomcat文件夹与文件解析
查看>>
consul如何限制注册的ip
查看>>
iOS开发中三种简单的动画设置
查看>>
ELK收集MySQL慢查询
查看>>
旋转数组
查看>>
2015 多校赛 第四场 1010 (hdu 5336)
查看>>
Day02 过滤和排序数据
查看>>
1043: [HAOI2008]下落的圆盘 - BZOJ
查看>>
CSS打造固定表头
查看>>
Activity管理类
查看>>
http缓存
查看>>
Luogu4022 CTSC2012熟悉的文章(广义后缀自动机+二分答案+动态规划+单调队列)
查看>>
java.lang.StringBuilder
查看>>
Net core 关于缓存的实现
查看>>
mysql的表和数据类型
查看>>
uva11988Broken Keeyboard(链表)
查看>>