system/nginx/03/pub.conf

12 lines
253 B
Plaintext
Raw Normal View History

server {
include listen01_443;
ssl_certificate /etc/ssl/parking/fullchain.pem;
ssl_certificate_key /etc/ssl/parking/private/privkey.pem;
server_name pub.libera.fun;
root /srv/www/pub;
# index index.html;
location / {
autoindex on;
}
}