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系统上设置代理,以使用这个代理服务器访问目标网站。

相关推荐
一坨阿亮2 小时前
Linux 使用中的问题
linux·运维
hairenjing11232 小时前
使用 Mac 数据恢复从 iPhoto 图库中恢复照片
windows·stm32·嵌入式硬件·macos·word
九鼎科技-Leo3 小时前
了解 .NET 运行时与 .NET 框架:基础概念与相互关系
windows·c#·.net
wclass-zhengge4 小时前
Docker篇(Docker Compose)
运维·docker·容器
李启柱4 小时前
项目开发流程规范文档
运维·软件构建·个人开发·设计规范
力姆泰克5 小时前
看电动缸是如何提高农机的自动化水平
大数据·运维·服务器·数据库·人工智能·自动化·1024程序员节
BPM_宏天低代码5 小时前
低代码 BPA:简化业务流程自动化的新趋势
运维·低代码·自动化
sun0077005 小时前
拷贝 cp -rdp 和 cp -a
linux·运维·服务器
wowocpp6 小时前
ubuntu 22.04 server 安装 anaconda3
linux·运维·ubuntu
九鼎科技-Leo6 小时前
什么是 ASP.NET Core?与 ASP.NET MVC 有什么区别?
windows·后端·c#·asp.net·mvc·.net