nginx 更新后下载 Powerpoint 和 PDF 文件时出错
Errors downloading Powerpoint and PDF files after nginx update
我在 DigitalOcean 的 nginx 服务器上托管我的网站,运行 一些更新。
在更新之前,我能够将 PDF 和 Powerpoint 文件上传到服务器并毫无问题地下载它们。
现在,每当我尝试下载文件时,我都会收到错误 "Powerpoint found a problem with content in FILENAME.pptx...." 并且尝试修复失败。大多数(但不是全部)PDF 文件也是如此 ("Failed to load PDF document")。
错误发生在包含图像的文件中,我想知道它是否与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/*;
}
如果有一部分日志文件会很有用。没有他们很难给你回复。
您尝试过 WGET 或 CURL 吗?
我发现了错误:更新将 nginx.conf 文件中的用户更改为 "user = www-data"。将其更改为我原来的用户名后,一切都按预期重新运行。
我在 DigitalOcean 的 nginx 服务器上托管我的网站,运行 一些更新。 在更新之前,我能够将 PDF 和 Powerpoint 文件上传到服务器并毫无问题地下载它们。
现在,每当我尝试下载文件时,我都会收到错误 "Powerpoint found a problem with content in FILENAME.pptx...." 并且尝试修复失败。大多数(但不是全部)PDF 文件也是如此 ("Failed to load PDF document")。
错误发生在包含图像的文件中,我想知道它是否与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/*;
}
如果有一部分日志文件会很有用。没有他们很难给你回复。
您尝试过 WGET 或 CURL 吗?
我发现了错误:更新将 nginx.conf 文件中的用户更改为 "user = www-data"。将其更改为我原来的用户名后,一切都按预期重新运行。