如何编写NGINX配置文件以使用ReactJS? (在Docker上)

时间:2018-09-30 18:01:56

标签: reactjs docker nginx

我目前正在Docker容器中的NGINX上使用此配置文件。主页工作正常,但所有其他React路由均不起作用。请帮助大家!


    # user wlopez wlopez;
    # worker_processes 4;

    upstream expressCluster {
      server express;
    }

    # Express
    server {
      listen ${NGINX_PORT};
      location / {
        proxy_pass http://expressCluster;
        proxy_redirect off;
      }
      server_name api.${NGINX_DOMAIN};
    }

    # ReactJS
    server {
      listen ${NGINX_PORT};
      location / {
        root /etc/nginx/html;
        try_files $uri $uri/ /index.html;
      }
      server_name www.${NGINX_DOMAIN};
    }

0 个答案:

没有答案