美文网首页
关于hyperf的服务器部署,设置反向代理

关于hyperf的服务器部署,设置反向代理

作者: geeooooz | 来源:发表于2023-05-15 21:40 被阅读0次

    1.host文件

    192.168.1.4     test.com
    

    2.网站反向代理

    upstream testhyperf {
        # Hyperf HTTP Server 的 IP 及 端口
        server 127.0.0.1:9501;
    }
    
    server {
        # 监听端口
        listen 80; 
        # 绑定的域名,填写您的域名
        server_name test.com;
    
        location / {
            # 将客户端的 Host 和 IP 信息一并转发到对应节点  
            proxy_set_header Host $http_host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    
            # 转发Cookie,设置 SameSite
            proxy_cookie_path / "/; secure; HttpOnly; SameSite=strict";
    
            # 执行代理访问真实服务器
            proxy_pass http://testhyperf;
        }
    }
    

    相关文章

      网友评论

          本文标题:关于hyperf的服务器部署,设置反向代理

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