19 lines
414 B
Plaintext
19 lines
414 B
Plaintext
server {
|
|
listen 45.129.182.13:443 ssl http2;
|
|
listen [2a03:4000:47:58a::]:443 ssl http2;
|
|
|
|
server_name 3zy.de;
|
|
|
|
ssl_certificate /etc/letsencrypt/live/3zy.de/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/3zy.de/privkey.pem;
|
|
|
|
location / {
|
|
root /mnt/gluster01/mirror;
|
|
# fancyindex on;
|
|
# fancyindex_exact_size on;
|
|
autoindex on;
|
|
autoindex_exact_size on;
|
|
autoindex_localtime on;
|
|
}
|
|
}
|