我在DigitalOcean&的nginx服务器上托管我的网站。发了一些更新。 在更新之前,我能够将PDF和Powerpoint文件上传到服务器并下载它们没有问题。
现在,每当我尝试下载文件时,我都会收到错误“Powerpoint发现FILENAME.pptx中的内容出现问题....”并且尝试修复失败。对于大多数(但不是全部)PDF文件(“无法加载PDF文档”)也是如此。
错误发生在包含图像的文件中,我想知道它是否与gzip有关。完全关闭gzip并没有改变任何东西。
任何可能导致这些错误的想法?
以下是我的nginx.conf文件的一部分:
http {
##
# Basic Settings
##
client_max_body_size 10M;
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; # 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_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 applicat
#gzip_types text/plain;
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
答案 0 :(得分:0)
拥有一块日志文件会很有用。没有他们就很难给你答复。
你有没有尝试过WGET或CURL?
答案 1 :(得分:0)
我发现错误:更新已将nginx.conf文件中的用户更改为" user = www-data"。将其更改为原始用户名后,所有内容都会按预期再次运行。