9

我安装 Nginx 并有一个子域和域。子域有 php5-fpm 和 wordpress。它工作正常,并且位于一个站点可用文件中,符号链接到已启用站点。该域没有 php,并且有一个文件也符号链接。即使在我进入域时重新启动服务器后,它也会尝试下载 html 文件。这是该域的可用站点页面:

       server {
        server_name www.example.us;
        rewrite ^(.*) http://example.us$1 permanent;
    }

    server {
            listen 80;
            server_name example.us;
                    root /var/www/example;
            index index.php;
            autoindex on;
            autoindex_exact_size off;
            include /etc/nginx/security;
    # Logging --
    access_log /var/log/nginx/example.us.access.log; 
    error_log /var/log/nginx/example.us.error.log notice;
            # serve static files directly
            location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt)$ {
                access_log off;
                expires max;
            }

#            location ~ \.php$ {
#           try_files $uri =404;
#                    fastcgi_pass unix:/var/run/php5-fpm/example.us.socket;
#                    fastcgi_index index.php;
#                    include /etc/nginx/fastcgi_params;
#            }
    }

nginx.conf 文件是:

user www-data; 
worker_processes 4; 
pid /var/run/nginx.pid; 

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;
# Logging Settings
log_format gzip '$remote_addr - $remote_user [$time_local] '
                '"$request" $status $bytes_sent '
                '"$http_referer" "$http_user_agent" "$gzip_ratio"';
    access_log /var/log/nginx/access.log gzip buffer=32k;
    error_log /var/log/nginx/error.log notice;
# Gzip Settings
    gzip on;
    gzip_disable "msie6";
    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/x-javascript text/xml application/xml application/xml+rss text/javascript;
# Virtual Host Configs
    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}
4

3 回答 3

10

删除default_type application/octet-stream;. 这一行使浏览器认为它是一些二进制数据而不是 HTML。

于 2013-04-26T13:05:27.437 回答
3

正如其他人指出的那样,这是导致您遇到麻烦的行:

default_type application/octet-stream;

此行覆盖它之前的行,并告诉 Nginx 将任何响应作为通用二进制数据发送。而且,由于浏览器不能对二进制数据做任何特定的事情,他们只是将它作为一个文件下载。


删除或评论该行以及上面的行:

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

应该可以工作,因为默认的 Nginx 行为是发送所有内容,text/plain并且浏览器足够聪明,可以以这种方式处理 HTML/CSS/JS。

尽管如此,我不推荐这样的解决方案,因为您可能需要从服务器提供不同类型的内容,即图片、mp3、二进制文件等。


这是一个更好的解决方案:

首先,检查该文件是否/etc/nginx/mime.types;确实存在并且运行 nginx 的用户可以读取该文件。

然后,检查该文件是否实际包含types { ... }声明。该文件与 Nginx 一起打包,并包含 mime 类型到文件扩展名映射的合理默认值。如果文件有问题,您可以从此要点复制粘贴其内容:

https://gist.github.com/KondorB/dd34feba1d63bd468ded4ee70e59ea07

最后,在nginx.conf变化中

default_type application/octet-stream;

default_type text/html;

现在 Nginx 将根据文件扩展名提供每种类型的内容。如果没有提供(某些后端系统/应用程序就是这种情况), - 将尝试提供 HTML。


请注意,您可能想要更改其中的一些默认值。例如,使用该设置:

types {
    audio/mpeg mp3;
}

浏览器通常会尝试播放歌曲而不是直接下载。如果需要,可以通过声明:

types {
    application/octet-stream mp3;
}
于 2020-01-10T08:21:21.320 回答
1

还可以尝试清除该站点的缓存。我在 Firefox 中遇到了这个问题,但回滚到旧配置不起作用

于 2019-09-17T22:12:40.783 回答