Swoole 绑定域名 80 端口 (Nginx 反向代理)

启动 Swoole 的 http server,可以使用 IP + 端口 进行访问

Swoole 绑定域名 80 端口 (Nginx 反向代理)

创建 Nginx 虚拟域名

vim swotp.liuguofeng.com.conf
server
    {
        listen 80;
        server_name swotp.liuguofeng.com ;
        index index.html index.htm index.php default.html default.htm default.php;
        root  /home/wwwroot/swoole_thinkphp.liuguofeng.com;

        location / {
                if (!-e $request_filename) {
                proxy_pass http://127.0.0.1:8811;
                }
        }
    }
Swoole 绑定域名 80 端口 (Nginx 反向代理)

重启 Nginx,DNS 指向 IP 

Swoole 绑定域名 80 端口 (Nginx 反向代理)Swoole
上一篇:php升级openssl扩展,swoole升级openssl扩展,linux安装openssl版本


下一篇:php7.2 下安装swoole扩展