Как улучшить TTFB в nginx

#nginx

Вопрос:

Я использую Nginx, PHP 7.4 и давайте зашифруем SSL для моего сайта WordPress. И я тоже использую CDN. Я проверяю производительность своего веб-сайта. Когда я выбираю HTTP-соединение между моим CDN и моим сервером ubuntu, я получаю следующие результаты:

  • На gtmetrix: TTFB: 581ms Connect: 50ms, Backend: 531ms
  • В google chrome: TTFB: 65~80

И когда я использую HTTPS-соединение между моим CDN и моим сервером ubuntu, я получаю следующие результаты:

  • На gtmetrix: TTFB: 1.3s Connect: 33ms, Backend: 1.2s
  • В google chrome: TTFB: 70~80

Я имею в виду, что 581 мс-это совсем не хорошо, а 1,3 с-еще хуже. Вот мой серверный блок:

 server {
        listen 80;
        listen 443 ssl http2;
        listen [::]:80;
        listen [::]:443 ssl http2 ipv6only=on;

        ssl_certificate /etc/letsencrypt/live/domain.com/fullchain.pem;
        ssl_certificate_key /etc/letsencrypt/live/domain.com/privkey.pem;
        # include /etc/letsencrypt/options-ssl-nginx.conf;
        ssl_ciphers EECDH CHACHA20:EECDH AES128:RSA AES128:EECDH AES256:RSA AES256:EECDH 3DES:RSA 3DES:!MD5;
        ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;

        root /var/www/domain.com;
        index index.html index.htm index.php;

        server_name domain.com www.domain.com;

        location / {
                try_files $uri $uri/ =404;
        }

        location ~ .php$ {
        
                fastcgi_cache phpcache;
                fastcgi_cache_valid 200 30m;
                fastcgi_cache_methods GET HEAD;
                add_header X-Fastcgi-Cache $upstream_cache_status;

                include snippets/fastcgi-php.conf;
                fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
        }

        location ~ /.ht {
                deny all;
        }

        location /subfolder/ {
                try_files $uri $uri/ /subfolder/index.php?q=$uri$args;
        }
} 

И вот мое 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 {

    fastcgi_cache_path /etc/nginx-cache levels=1:2 keys_zone=phpcache:100m inactive=60m;
    fastcgi_cache_key "$scheme$request_method$host$request_uri";

    ##
    # 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 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
    ##

    gzip on;

    # 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/javascript text/xml application/xml application/xml rss text/javascript;

    ##
    # Virtual Host Configs
    ##

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}


#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;
#   }
#} 

Any help with this? Thanks.