NGINX重定向到默认服务器页面

iovurdzv  于 2023-02-18  发布在  Nginx
关注(0)|答案(1)|浏览(256)

我尝试部署一个应用程序到带有NGINX的Ubuntu 20.04服务器。我的静态构建文件在/var/www/html目录下。我遇到的问题是,当通过域名访问网站时,默认的服务器页面(空白,有一行文本详细说明服务器信息)显示,而不是我的静态文件。
我试着在“sites-available”目录下的配置文件中更改server_name和root的值。无论我使用域名还是IP地址,我都得到了相同的结果。
这是sites-available下的配置文件:

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

    server_name example.com;
    root /var/www/html;

    location / {
        proxy_pass http://localhost:3000;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection 'upgrade';
        proxy_set_header Host $host;
        proxy_cache_bypass $http_upgrade;
    }
}

这是默认的nginx.conf文件:

user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;

events {
    worker_connections 768;
    # multi_accept on;
}

http {

    ##
    # Basic Settings
    ##

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;
    # server_tokens off;

    # server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

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

    ##
    # SSL Settings
    ##

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE
    ssl_prefer_server_ciphers on;

    ##
    # Logging Settings
    ##

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    ##
    # Gzip Settings
    ##

    gzip on;

    # gzip_vary on;
    # gzip_proxied any;
    # gzip_comp_level 6;
    # gzip_buffers 16 8k;
    # gzip_http_version 1.1;
    # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

    ##
    # Virtual Host Configs
    ##

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}
bwntbbo3

bwntbbo31#

1.你的问题是离题这里,应该问服务器故障.
您的描述中遗漏了一些我希望看到的内容。虽然这并不能指出您的问题的确切原因,但它们可能是促成因素:
1.关于...
这是sites-available下的配置文件:在Ubuntu上,Nginx忽略了这个目录-它在/etc/nginx/sites-enabled中查找要运行的特定站点。文件本身应该驻留在/etc/nginx/sites-available中,并与/etc/nginx/sites-enabled符号链接
1.如果你想在你的服务器上有多个站点,那么你应该在/etc/nginx/sites-enabled中至少有2个可见的文件,一个像这样的默认文件。

server {
        listen 80 default_server;
        listen [::]:80 default_server;
        server_name _;
        root /var/www/html;
        ...

(Note"默认服务器"和"服务器名称"),并且每个命名服务器一个。
1.输入法,Nginx需要先加载默认配置。并且它按字母顺序加载文件。所以名为"www.example.com"的符号链接将在"default"之前加载。在我的服务器上,默认配置名为"_default" a.example.com " will be loaded before "default". On my servers, the default config is named "_default"

相关问题