]> jfr.im git - uguu.git/blob - templates/nginx_confs/A.Y.conf
add nginx example confs
[uguu.git] / templates / nginx_confs / A.Y.conf
1 server{
2 listen 443 ssl http2;
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
9 root /home/neku/www/files/files;
10 autoindex off;
11 access_log off;
12 index index.html;
13 }