initial: create ansible role

This commit is contained in:
2022-08-01 10:22:00 +07:00
commit ab7a3ac46d
11 changed files with 165 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
server {
listen 80;
access_log /var/log/nginx/{{ lighthouse_access_log_name }}.log;
location / {
root {{ lighthouse_location }};
index index.html;
}
}