infra/roles/webserver/files/onion.conf.j2

13 lines
218 B
Django/Jinja

server {
listen 80;
listen [::]:80;
server_name {{ web_onion.stdout }};
root /home/{{ item.name }}/public/html/onion;
index index.html;
location / {
try_files $uri $uri/ =404;
}
}