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

17 lines
298 B
Plaintext
Raw Normal View History

2024-11-12 20:14:17 +00:00
server {
listen 80;
server_name {{ siteB.site_domain }};
root /var/www/siteB;
index index.html;
location / {
try_files $uri $uri/ =404;
}
location /health {
return 200 'SiteB is up';
add_header Content-Type text/plain;
}
}