]> jfr.im git - uguu.git/blob - templates/nginx_confs/A.Y.conf
nginx examples
[uguu.git] / templates / nginx_confs / A.Y.conf
1 server{
2 listen 443 ssl;
3 server_name A.Y www.A.Y;
4 ssl on;
5 ssl_certificate /etc/letsencrypt/live/A.Y/fullchain.pem;
6 ssl_certificate_key /etc/letsencrypt/live/A.Y/privkey.pem;
7 ssl_protocols TLSv1.2 TLSv1.3;
8 ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH';
9 ssl_ecdh_curve secp384r1;
10
11 root /var/www/uguu/files/;
12 autoindex off;
13 access_log off;
14 index index.html;
15 }