This commit is contained in:
Sergei Poljanski 2023-08-26 12:07:47 +02:00
commit f0d87cb54c
20 changed files with 682 additions and 36 deletions

View file

@ -1,9 +1,10 @@
server {
server_name builds.asxp.io;
#listen [::]:443 ssl ipv6only=on;
listen [::]:443 ssl;
listen 443 ssl;
http2 on;
ssl_certificate /etc/letsencrypt/live/asxp.io/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/asxp.io/privkey.pem;
@ -12,11 +13,11 @@ server {
access_log /var/log/nginx/ftp.access.log;
error_log /var/log/nginx/ftp.error.log;
location / {
autoindex on;
autoindex_exact_size off;
autoindex_format html;
autoindex_localtime on;
autoindex on;
autoindex_exact_size off;
autoindex_format html;
autoindex_localtime on;
}
}