Nginx 在 .com/port 上运行,但不在 .com/ 上运行

Nginx 在 .com/port 上运行,但不在 .com/ 上运行

我可能需要一点帮助。我觉得我快完成了,但我的设置中遗漏了一些东西。

我可以连接到我的服务器,.com/3000查看服务器上运行的本地节点应用程序。要直接连接到 .com,我只需要使用 proxy_pass,所以我这样做了

proxy_pass http://127.0.0.1:3000

但它无法运行。

我在服务器上的 localhost:3000 上有一个运行的 nodejs 应用程序。

下面是我的默认文件/etc/nginx/sites-available

server {
    listen 80 default_server;
    listen [::]:80 default_server;


    index index.html index.htm index.nginx-debian.html;

    server_name _;

    location / {
            proxy_pass http://127.0.0.1:3000;
    }

 }

这是我的nginx.config文件

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;

# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;
include /etc/nginx/sites-enabled/*;

events {
    worker_connections 1024;
}

http {
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '


                  '$status $body_bytes_sent "$http_referer" '
                  '"$http_user_agent" "$http_x_forwarded_for"';

access_log  /var/log/nginx/access.log  main;

sendfile            on;
tcp_nopush          on;
tcp_nodelay         on;
keepalive_timeout   65;
types_hash_max_size 2048;

include             /etc/nginx/mime.types;
default_type        application/octet-stream;

# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;
index   index.html index.htm;

server {
    listen       80 default_server;
    listen       [::]:80 default_server;
    server_name  localhost;
    root         /usr/share/nginx/html;

    # Load configuration files for the default server block.
    include /etc/nginx/default.d/*.conf;

    location / {
    }

     # redirect server error pages to the static page /40x.html
    #
    error_page 404 /404.html;
        location = /40x.html {
    }

    # redirect server error pages to the static page /50x.html
    #
    error_page 500 502 503 504 /50x.html;
        location = /50x.html {
    }

}

更新 -

我在 Amazon Ec2 实例上。.com 上的页面显示为

在此处输入图片描述

对于 root 指令我已经尝试过

  1. root /var/www/app/index.html在这种情况下,它只会抛出 404 not found nginx page**
  2. root /var/www/app在这种情况下,会出现 403 禁止错误**

答案1

default_server从您的中删除nginx.config

    listen       80; # default_server;
    listen       [::]:80; # default_server;

然后您的default配置文件应该会收到请求。另外,我只会使用server_name _;文档根目录,当请求到达未在您的服务器上配置的域时,应将其作为最后的手段。使用实际域名而不是_

答案2

这是一个相当令人困惑的配置文件布局。我认为你应该尝试以下几件事:

server从 nginx 配置中删除该阻止。

确保您的配置文件以 结尾的文件名default保存在 中。这样它将包含在 nginx 配置中。/etc/nginx/conf.d.conf

当前 nginx 配置不包含任何文件sites-availablesites-enabled目录,因此这些文件不起作用。

最后一条提示,您应该使用nginx -T(注意大写 T)来检查 nginx 在处理所有包含内容时使用的实际配置是什么。

相关内容