sugoi/templates/nginx_confs/A.Y.conf

15 lines
415 B
Plaintext
Raw Normal View History

2021-06-05 14:19:47 +00:00
server{
listen 443 ssl;
2021-06-05 14:19:47 +00:00
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;
2021-06-05 14:19:47 +00:00
2021-06-05 14:26:38 +00:00
root /var/www/uguu/files/;
2021-06-05 14:19:47 +00:00
autoindex off;
access_log off;
index index.html;
}