mirror of
https://github.com/CPunch/openpunk-ansible.git
synced 2024-11-12 19:10:06 +00:00
12 lines
244 B
Plaintext
12 lines
244 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=();
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
} |