ansible-ffibk/roles/service-nginx/templates/default.conf.j2

15 lines
233 B
Django/Jinja

server {
listen 80 default_server;
server_name _;
charset utf-8;
server_tokens off;
root /var/www/html;
location / {
index index.html;
autoindex on;
autoindex_exact_size off;
}
}