我安装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/*;
}
答案 0 :(得分:5)
删除default_type application/octet-stream;
。这条线使浏览器认为它是一些二进制数据而不是HTML。
答案 1 :(得分:2)
正如其他人所指出的,这是引起您麻烦的那一行:
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;
}
答案 2 :(得分:0)
也尝试清除that site的缓存。我在Firefox中遇到了这个问题,但是回滚到较早的配置无法正常工作