Konfigurationsproblem, dass Nginx nicht auf HTML auf dem Server zugreifen kann
巴扎黑
巴扎黑 2017-06-20 10:07:52
0
1
955

Auf dem Server befindet sich index.html unter /www/cms/produktion/current/dist

nginx-Konfiguration:

server {
  listen 3002;
  root /www/cms/production/current/dist;
  index index.html;
  server_name xxx.xxx.com;

  location / {
    try_files $uri $uri/ /index.html;
  }

  location /api/ {
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
    proxy_set_header X-Nginx-Proxy true;

    proxy_pass http://127.0.0.1:3000/api;
    proxy_redirect off;
  }
}

Warum wird über xxx.xxx.com nur eine Willkommensseite bei Nginx angezeigt, meine index.html kann jedoch nicht angezeigt werden?

巴扎黑
巴扎黑

Antworte allen(1)
習慣沉默

端口写错了,已解决

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage