ђ
Size: a a a
D
AN
AN
MD
AN
ВТ
SJ
BS
server {
listen 443 ssl;
server_name myname.com;
access_log /var/log/nginx/access.log default buffer=1m flush=10s;
error_log /var/log/nginx/error.log;
keepalive_timeout 70;
charset utf-8;
client_max_body_size 64m;
ssl_certificate /etc/nginx/ssl/fw/current/ssl-bundle.crt;
ssl_certificate_key /etc/nginx/ssl/fw/current/fw_wild.key;
ssl_dhparam /etc/nginx/ssl/dhparam.pem;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_stapling on;
ssl_stapling_verify on;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;
ssl_prefer_server_ciphers on;
ssl_ciphers AES256+EECDH:AES256+EDH:!aNULL;
ssl_ecdh_curve secp384r1;
add_header Strict-Transport-Security 'max-age=31536000' always;
add_header Referrer-Policy "strict-origin-when-cross-origin";
root /data/eva/backend_api_php-current/public;
some locations ...
BS
BS
add_header Referrer-Policy "strict-origin-when-cross-origin" always;
BS
BS