We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
访问http::// 180.76.128.198:8084 返回File not found. 这个是什么问题引起的? nginx 配置如下 server { listen 8084; server_name 180.76.128.198; index index.html index.php;
access_log /path/to/webim/webroot/access.log main; error_log /path/to/webim/webroot/error.log warn; location / { root /path/to/webim/webroot; proxy_set_header X-Real-IP $remote_addr; if (!-e $request_filename) { rewrite ^/(.*)$ /index.php; } } location ~ .*\.(php|php5)?$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi.conf; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; }
}
The text was updated successfully, but these errors were encountered:
还是自己基于swoole写吧 用这个不够帮韩大神调bug的
Sorry, something went wrong.
No branches or pull requests
访问http::// 180.76.128.198:8084 返回File not found.
这个是什么问题引起的?
nginx 配置如下
server {
listen 8084;
server_name 180.76.128.198;
index index.html index.php;
}
The text was updated successfully, but these errors were encountered: