问答详情
源自:6-3 compose实战

Nginx 貌似配置不太对, 一直在重启... 但是我可以从 :2368直接访问到 ghost

所以大佬们有没有解决方案

提问者:慕虎9117825 2020-10-18 12:38

个回答

  • 叶0528
    2021-06-09 16:31:45


    worker_processes 4;

    events {worker_connections 1024;}

    http {

       server {

        listen 80;

        location / {

            proxy_pass http://ghost-app:2368;

        }

       }

    }