Nginx正向代理并在Windows上使用

Nginx正向代理并在Windows上使用

1. 配置Nginx正向代理

安装Nginx
  1. 在Linux服务器或本地机器上安装Nginx。
    • 对于Ubuntu:

      bash 复制代码
      sudo apt update
      sudo apt install nginx
配置Nginx
  1. 打开Nginx配置文件进行编辑(通常位于/etc/nginx/nginx.conf/etc/nginx/sites-available/default)。

  2. 添加或修改以下内容以设置正向代理:

    nginx 复制代码
    server {
        listen 9204;
        server_name localhost;
    
        location / {
            # Enable proxy
            proxy_pass http://12.22.133.12;
    
            # Set headers to preserve the client's original request information
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header X-Forwarded-Proto $scheme;
    
            # Other proxy settings
            proxy_read_timeout 90;
            proxy_connect_timeout 90;
            proxy_redirect off;
        }
    }
  3. 保存并退出编辑器。

  4. 测试Nginx配置是否正确:

    bash 复制代码
    sudo nginx -t
  5. 重新加载Nginx以应用新配置:

    bash 复制代码
    sudo systemctl reload nginx

2. 在Windows上配置代理

打开代理设置
  1. 打开"设置"

    • 通过开始菜单或按 Win + I 键打开"设置"。
  2. 进入"网络和Internet"设置

    • 在"设置"中选择"网络和Internet"。
  3. 选择"代理"

    • 在左侧菜单中选择"代理"。
配置手动代理设置
  1. 启用手动代理

    • 在"手动代理设置"部分,将"使用代理服务器"开关打开。
  2. 输入代理服务器地址和端口

    • 在"地址"字段中输入Nginx服务器的IP地址(假设是192.168.1.100)。
    • 在"端口"字段中输入9204
  3. 保存设置

    • 单击"保存"以应用这些设置。

3. 验证代理设置

  1. 打开浏览器,尝试访问任意网页。
  2. 如果配置正确,浏览器的请求会通过Nginx正向代理服务器,并最终到达目标服务器12.22.133.12

4. 注意事项

  • 确保Nginx服务器能够访问目标服务器12.22.133.12
  • 可能需要在防火墙或路由器上允许9204端口的流量。
  • 如果网络环境较复杂,可能需要进一步的网络配置或调试。

完整的Nginx配置文件示例

以下是完整的Nginx正向代理配置文件内容:

nginx 复制代码
server {
    listen 9204;
    server_name localhost;

    location / {
        # Enable proxy
        proxy_pass http://12.22.133.12;

        # Set headers to preserve the client's original request information
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;

        # Other proxy settings
        proxy_read_timeout 90;
        proxy_connect_timeout 90;
        proxy_redirect off;
    }
}

通过上述步骤,你可以成功配置Nginx作为正向代理服务器,并在Windows系统上设置代理,以使用这个代理服务器访问目标网站。

相关推荐
云和数据.ChenGuang37 分钟前
运维面试题之oracle和mysql单表最大容量
运维·mysql·oracle
酷柚易汛智推官1 小时前
Fastlane赋能移动研发:从全流程自动化到工程效能升级
运维·自动化·酷柚易汛
落798.1 小时前
Genlogin × Bright Data,一键解锁自动化采集的高成功率方案
运维·自动化·数据采集·亮数据
无限进步_1 小时前
C语言数组元素删除算法详解:从基础实现到性能优化
c语言·开发语言·windows·git·算法·github·visual studio
羑悻的小杀马特1 小时前
轻量跨云·掌控无界:Portainer CE + cpolar 让远程容器运维像点外卖一样简单——免复杂配置,安全直达对应集群
运维·网络·安全·docker·cpolar
L***86531 小时前
Failed to restart nginx.service Unit nginx.service not found
运维·nginx
自由的好好干活2 小时前
使用Qoder编写ztdaq的C#跨平台示例总结
linux·windows·c#·qoder
十六年开源服务商3 小时前
WordPress运维服务怎样提供客户服务支持
运维
chxii3 小时前
PHP 配置全解析:Apache vs Nginx 的线程安全差异与 Windows 实战指南
运维·php
想唱rap3 小时前
C++ map和set
linux·运维·服务器·开发语言·c++·算法