0

当我尝试运行以下 nginx 配置文件时,出现错误 Cannot GET /index on using http://domain_name/index。当我点击 时http://domain_name,它调用 127.0.0.1/3000。我在这里做错了什么。对此的任何帮助都会非常有帮助。

error_log  /tmp/logs/error.log;
events {
  worker_connections  1024;
}

http {
  include       mime.types;
  default_type  application/octet-stream;
  access_log  /tmp/logs/access.log;
  sendfile        on;
  keepalive_timeout  65;

  include /etc/nginx/sites-enabled/*;

  # BELOW IS THE PART TO PROXY MY samp1.js and samp2.js APP

  upstream first_entry {
    server 127.0.0.1:3000;
  }
   upstream second_entry {
    server 127.0.0.1:5000;
  }
  server {
    listen 80;
    server_name domain_name;
    location / {
      proxy_pass http://first_entry;
    }
    location /index {
      proxy_pass http://second_entry;
    }
  }
}
4

1 回答 1

0

error_log /path/to/log/files/debug.log;使用指令和扩展您的服务器块rewrite_log on;。然后在浏览器中tail -f /path/to/log/files/debug.log输入。http://domain_name/index您现在可以在解析输入 URL 时实时查看 nginx 在做什么。这应该可以帮助您调试问题。

请在您的问题中发布此输出以获得进一步帮助,如果我能提供进一步帮助,请告诉我。

于 2013-10-29T17:15:28.537 回答