当前位置:   article > 正文

nginx正向代理和反向代理_双网卡机器nginx反向代理

双网卡机器nginx反向代理

一、正向代理

①添加网卡(仅主机模式)

  1. [root@host1 conf.d]# pwd
  2. /usr/local/nginx/conf.d

②配置

[root@host1 conf.d]# vim test1.conf

这里设置监听端口为8080

  1. server {
  2. resolver 114.114.114.114;
  3. listen 8080;
  4. location / {
  5. proxy_pass http://$http_host$request_uri;
  6. }
  7. }

重启nginx

二、反向代理(host1 host2 localhost 分别为三台linux虚拟机)

#简单模拟

host2 和 localhost 安装httpd

①localhost配置

localhost 设置为仅主机模式添加ip 192.168.91.131

  1. [root@localhost ~]# echo "this is a test" > /var/www/html/index.html
  2. [root@localhost ~]# systemctl start httpd
  3. [root@localhost ~]# systemctl stop firewalld
  4. [root@localhost ~]# setenforce 0

 ②host1 配置

这里设置监听端口为8800

[root@host1 conf.d]# vim test2.conf

  1. server {
  2. listen 8800;
  3. server_name localhost;
  4. location /{
  5. proxy_pass http://192.168.91.131;
  6. }
  7. }

如下:测试语法无误

 重启nginx

 ③使用一台不能ping通linux电脑curl

此台电脑需要关掉防火墙并设置selinux

curl 8800 端口

1、配置用于测试的两台Web服务器(host2、host3)

host2、host3为两台web服务器

均安装epel(rhel7)

wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo

使用yum下载nginx

yum install nginx -y
  1. mkdir /usr/share/nginx/html/{www,bbs}/logs -p
  2. cd /etc/nginx/conf.d

vim vhost.conf

  1. server {
  2. listen 80;
  3. server_name bbs.yunjisuan.com;
  4. location / {
  5. root /usr/share/nginx/html/bbs;
  6. index index.html index.htm;
  7. }
  8. access_log /usr/share/nginx/html/bbs/logs/access_bbs.log main;
  9. }
  10. server {
  11. listen 80;
  12. server_name www.yunjisuan.com;
  13. location / {
  14. root /usr/share/nginx/html/www;
  15. index index.html index.htm;
  16. }
  17. access_log /usr/share/nginx/html/www/logs/access_www.log main;
  18. }
  1. echo "`hostname -I `www" > /usr/share/nginx/html/www/index.html
  2. echo "`hostname -I `www" > /usr/share/nginx/html/bbs/index.html

2、host1、host2关掉防火墙,设置selinux

  1. systemctl stop firewalld
  2. setenforce 0

3、host1、host2开启nginx

  1. systemctl start nginx
  2. 检查语法
  3. nginx -t

4、重新找一台电脑curl

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/996504
推荐阅读
相关标签
  

闽ICP备14008679号