mirror of
https://github.com/Dannecron/netology-devops-ansible-lighthouse.git
synced 2025-12-25 13:32:34 +03:00
11 lines
185 B
Django/Jinja
11 lines
185 B
Django/Jinja
server {
|
|
listen 80;
|
|
|
|
access_log /var/log/nginx/{{ lighthouse_access_log_name }}.log;
|
|
|
|
location / {
|
|
root {{ lighthouse_location }};
|
|
index index.html;
|
|
}
|
|
}
|