mirror of
https://github.com/CPunch/openpunk-ansible.git
synced 2024-11-12 19:10:06 +00:00
CPunch
abaa4c9639
- all tasks/* have been moved to their own roles in roles/* - each file && template is now oragnized per-role - annotated each task which still isn't idempotent !TODO!
13 lines
295 B
Plaintext
13 lines
295 B
Plaintext
server {
|
|
server_name {{ domain }};
|
|
listen 80;
|
|
|
|
root /var/www/{{ domain }}/public;
|
|
index index.html index.htm;
|
|
|
|
location / {
|
|
add_header Permissions-Policy interest-cohort=();
|
|
add_header Referrer-Policy: "no-referrer";
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
} |