当前位置:  开发笔记 > 编程语言 > 正文

swoole可以用80端口吗

swoole可以用80端口,Swoole绑定域名80端口的方法:首先启动Swoole的“httpserver”;然后使用命令“vimswotp.liuguofeng.com.conf”创建Nginx虚拟域名;最后重启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端口吗的详细内容,更多请关注其它相关文章!

推荐阅读
贴进你的心聆听你的世界
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有