美文网首页
Nginx 端口转发

Nginx 端口转发

作者: IamaiAI | 来源:发表于2018-11-28 17:35 被阅读0次

    想尝试Arachni这款扫描器,下载运行之后发现默认的地址在http://127.0.0.1:9292, 由于是在VPS上运行的Arachni,所以本地访问不到,又因为暂时不会更改配置文件所以想到把127.0.0.1的9292端口转发到VPS服务器IP的8080端口,就想到了Nginx,所以记录一下。

    配置Nginx

    修改Nginx的配置文件conf/nginx.conf为:

    
    http {
    
        include      mime.types;
    
        default_type  application/octet-stream;
    
        sendfile        on;
    
        keepalive_timeout  65;
    
        server {
    
            listen      8080;
    
            location / {
    
                proxy_pass  http://127.0.0.1:9292;
    
            }
    
        }
    
    }
    
    

    其中listen为监听的端口, proxy_pass为需要代理的地址。

    相关文章

      网友评论

          本文标题:Nginx 端口转发

          本文链接:https://www.haomeiwen.com/subject/uoezqqtx.html