-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Open
Description
在services/nginx/conf.d/test.cn.conf配置这个文件,内容如下
server {
listen 80;
server_name test.cn;
root /www/test.cn;
index index.php index.html index.htm;
access_log /dev/null;
error_log /var/log/nginx/nginx.test.cn.error.log warn;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~ [^/]\.php(/|$) {
fastcgi_pass php80:9000;
include fastcgi-php.conf;
include fastcgi_params;
}
}
然后在www的目录下面有一个test.cn的目录,里面就是一个index.php
hosts也配置了,localhost test.cn
docker exec -it nginx nginx -t 没有问题
docker exec -it nginx nginx -s reload 也重启了
但是范围的时候提示502
该网页无法正常运作test.cn
目前无法处理此请求。
HTTP ERROR 502
大佬可以帮忙看看吗
Metadata
Metadata
Assignees
Labels
No labels