swoole学习---搭建webim

刚开始学习swoole,看了框架文档也有一段时间了。所以就想从项目中学习一下,所以就想搭建
一个webim的聊天室,这里直接使用韩大的代码。
这里可以直接使用git来克隆代码库
git clone https://github.com/matyhtf/webim.git
composer install --prefer-dist

注意:上面的composer要在webim文件夹里面进行,在这里不要使用root用户直接换个用户就可以了,项目直接chmod -R 777就可以顺利composer了

然后我们就要配置一下nginx服务器
vim /etc/nginx/nginx.conf

server {
        listen 8888;
        server_name  im.swoole.com;
        root   /path/to/webim/webroot;
    index index.html index.php;

        location / {

            proxy_set_header X-Real-IP $remote_addr;
            if (!-e $request_filename) {
                rewrite ^/(.*)$ /index.php;
            }
        }

        location ~ .*\.(php)?$ {
        fastcgi_pass  127.0.0.1:9000;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name; 
            include        fastcgi_params;  
        }
    }

这样就配置好了,在swoole的webim文档里面,监听的端口是80.在这里我被坑了很久,一直无法访问。所以这里要注意。

之后就是配置php了。这里面要加入两个扩展,redis.so,swoole.so。这里的扩展自己去配吧,不详细说了。

swoole学习---搭建webim_第1张图片

到了这一步就可以了。
在这里我们后台运行程序。

nohup php webim_server.php start &

启动成功后我们就可以在浏览器访问到了,这里面官方代码做了检测登录功能,登录一下就可以了。具体效果如下:
swoole学习---搭建webim_第2张图片

swoole学习---搭建webim_第3张图片

你可能感兴趣的:(后端框架,swoole)