我确定我在我的liunx 终端 运行了 php start.php start 我为workerman在本地指定了一个域名 打开域名提示 Usage: php yourfile.php {start|stop|restart|reload|status} 请问是什么情况 清楚吗?
配置如下
server {
listen 80; #监听端口,前面可加IP
server_name workerman.ddd.com;#绑定域名
location / {
root /home/LiHao/www/web-msg-sender;
index index.html index.htm index.php start.php;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /home/LiHao/www;
}
location ~ \.php$ {
root /home/LiHao/www/web-msg-sender;#网站根目录
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /home/LiHao/www/web-msg-sender/$fastcgi_script_name;
include fastcgi_params;
}
/home/LiHao/www/web-msg-sender/Applications/Sender/Web 是web-msg-sender的Web目录
设置
root /home/LiHao/www/web-msg-sender/Applications/Sender/Web