Há uma semana, o Nginx ficou terrivelmente lento para baixar arquivos pequenos e servir meu conteúdo. Por exemplo, o download de um arquivo de 500 KB leva de ms a 6 segundos no mesmo servidor. parece que está sendo estrangulado de alguma forma. O estranho aqui é que não alterei nenhum arquivo de configuração do Nginx nos últimos meses.
Então, verifiquei se é algo com meu servidor. Carreguei e baixei um arquivo via sftp e alcancei 900 MB/s em uma conexão de 1 GB. Também verifiquei o uso da CPU e do disco, mas tudo parece estar bem.
Fiz alguns testes com o Postman e vejo que o tempo para a resposta HTTP real é de alguns ms, mas depois o download do arquivo demora muito.
Também é estranho que isso aconteça quando uso HTTP e não HTTPS. HTTPS funciona perfeitamente na rede local, mas se eu baixar o mesmo arquivo via HTTPS de fora de nossa rede, ele ficará lento novamente. HTTP é sempre lento.
Não tenho certeza do que fazer agora ou do que mais posso verificar. Também criei uma nova VM Ubuntu com a mesma configuração e estou com o mesmo problema, então acho que é algo com a configuração, mas não sei o quê.
Aqui está meu arquivo nginx.conf
user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;
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;
##
# 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_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_buffers 16 8k;
gzip_http_version 1.1;
gzip_min_length 256;
#gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/vnd.ms-fontobject application/x-font-ttf font/opentype image/svg+xml image/x-icon;
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
### Include a blocklist file
include /etc/nginx/nginx-acces.conf;
}
#mail {
# # See sample authentication script at:
# # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
#
# # auth_http localhost/auth.php;
# # pop3_capabilities "TOP" "USER";
# # imap_capabilities "IMAP4rev1" "UIDPLUS";
#
# server {
# listen localhost:110;
# protocol pop3;
# proxy on;
# }
#
# server {
# listen localhost:143;
# protocol imap;
# proxy on;
# }
#}
Esta é uma das minhas configurações habilitadas para sites:
server {
server_name resources.example.io www.resources.example.io;
location / {
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://192.168.1.105:8083;
allow all;
}
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/resources.example.io/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/resources.example.io/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
server {
if ($host = resources.example.io) {
return 301 https://$host$request_uri;
} # managed by Certbot
server_name resources.example.io www.resources.example.io;
listen 80;
return 404; # managed by Certbot
}