sugoi/templates/nginx_confs/A.Y.conf
nokonoko 946c385baf nginx examples
scaled down
2021-06-23 13:19:54 +02:00

15 lines
415 B
Plaintext

server{
listen 443 ssl;
server_name A.Y www.A.Y;
ssl on;
ssl_certificate /etc/letsencrypt/live/A.Y/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/A.Y/privkey.pem;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH';
ssl_ecdh_curve secp384r1;
root /var/www/uguu/files/;
autoindex off;
access_log off;
index index.html;
}