声明:swoole-version=4.4.8. wndows环境下虚拟机linux centos7。
开始设置$http = new Swoole\Http\Server("0.0.0.0", 5001);0.0.0.0表示所有的ip4地址都能访问该服务。具体的话根据你的linuxIP地址设置),比如ipconfig显示地址为192.168.1.10,就用这个作为虚拟服务器地址。
然后vim /etc/hosts 添加192.168.1.10 xianyang.swoole.com,同时在windows系统里找到hosts文件,添加192.168.1.10 xianyang.swoole.com。
再设置的文件存放地址:$http->set(
[
'enable_static_handler' => true,
'document_root' => '/project/swoole_imooc/data'
];这个地址根据自己的意愿和项目需要修改。
开启服务。输入xianyang.swoole.com:5001。如果想要打开data里的index.html,就输入xianyang.swoole.com:5001/index.html