vapaus 大佬有话说 :
Nginx 下载东西速度越来越慢
本帖最后由 vapaus 于 2020-3-4 13:28 编辑
用 IDM 32线程下载,刚开始满速,过一会就是 3-4M 然后就是 几百KB
有知道怎么回事的不
对了,重启一下 Nginx 又会满速一会 然后又是几百K
一位不知名网友 大佬有话说 :
我也不知道,太骚了
llyang 大佬有话说 :
nginx表示不背这锅:Q
aweihaitun 大佬有话说 :
应该服务器的问题,妥妥地
suantong 大佬有话说 :
这是典型的qos:lol:lol
hasamol7468 大佬有话说 :
:lol nginx配置不对?或者你网络供应商限制?或者你服务器提供商限制?
vapaus 大佬有话说 :
aweihaitun 大佬有话说 : 2020-3-4 13:28
应该服务器的问题,妥妥地
应该不是,HostHatch 和 OL 都一样
shig 大佬有话说 :
qos
vapaus 大佬有话说 :
hasamol7468 大佬有话说 : 2020-3-4 13:28
nginx配置不对?或者你网络供应商限制?或者你服务器提供商限制?
user www;
worker_processes auto;
worker_rlimit_nofile 65535;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;
events {
worker_connections 2048;
use epoll;
multi_accept on;
}
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 120;
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
##
gzipon;
gzip_vary on;
gzip_proxied any;
gzip_comp_level 4;
gzip_disable https://d.znov.org;
gzip_min_length 1k;
gzip_buffers 16 8k;
gzip_http_version 1.1;
gzip_types text/xml application/xml application/atom+xml application/rss+xml application/xhtml+xml image/svg+xml text/javascript application/javascript application/x-javascript text/x-json application/json application/x-web-app-manifest+json text/css text/plain text/x-component font/opentype font/ttf application/x-font-ttf application/vnd.ms-fontobject image/x-icon;
gzip_disable "MSIE .(?!.*SV1)";
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
配置是这个,独服应该不会限制吧,再说 HostHatch 家的VPS也是一样