coursework/ansible/roles/site_setup/templates/nginx_site.conf.j2

9 lines
155 B
Plaintext
Raw Normal View History

2024-11-11 10:48:06 +00:00
server {
listen 80;
server_name {{ site_name }};
location / {
2024-11-11 20:16:26 +00:00
root /var/www/{{ site_name }};
2024-11-11 10:48:06 +00:00
index index.html;
}
2024-11-11 20:16:26 +00:00
}