求教-digitalocean nginxconfig.io 的这个配置怎么改
想在 xx.com 和 www.xx.com 下放一个静态的 bei an 页 index.html
但是一直 502 Bad Gateway
尝试 docker-compose.yml 文件夹下的这两个路径都放了 index.html ,但是还是 502
./www/xx.com/public/index.html ./www/xx.com/index.html
nginx 使用 docke 部署
version: '3' services: nginx: container_name: nginx image: nginx:latest restart: always ports: - 80:80 - 443:443 volumes: - /etc/localtime:/etc/localtime - ./nginx.conf:/etc/nginx/nginx.conf - ./conf.d:/etc/nginx/conf.d - ./log:/var/log/nginx - ./www:/var/www - ./sites-available:/etc/nginx/sites-available - ./nginxconfig.io:/etc/nginx/nginxconfig.io - ./ssl:/etc/nginx/ssl - ./dhparam.pem:/etc/nginx/dhparam.pem
digitalocean url
https://www.digitalocean.com/community/tools/nginx?domains.0.server.domain=test.com&domains.0.server.wwwSubdomain=true&domains.0.server.redirectSubdomains=false&domains.0.https.https=false&domains.0.https.hstsSubdomains=false&domains.0.https.hstsPreload=true&domains.0.https.certType=custom&domains.0.php.php=false&domains.0.routing.index=index.html&domains.0.routing.fallbackHtml=true&domains.0.routing.fallbackPhp=false&global.https.ocspCloudflare=false&global.https.ocspGoogle=false&global.https.ocspOpenDns=false&global.nginx.user=nginx&global.nginx.pid=%2Fvar%2Frun%2Fnginx.pid&global.app.lang=zhCN
![]() | 1 abc0123xyz OP |
![]() | 2 abc0123xyz OP 有无大佬 |
3 CnpPt 2023-02-02 17:09:10 +08:00 不如看看 nginx 的 502 日志? |
![]() | 4 abc0123xyz OP 找到原因了,少了一行 - ./sites-enabled:/etc/nginx/sites-enabled |