mirror of
https://github.com/CPunch/openpunk-ansible.git
synced 2024-11-12 19:10:06 +00:00
13 lines
266 B
Plaintext
13 lines
266 B
Plaintext
server {
|
|
root /var/www/{{ domain }}/tor;
|
|
index index.html index.htm;
|
|
|
|
location / {
|
|
add_header Permissions-Policy interest-cohort=();
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
|
|
# our tor hidden service is hosted on this port
|
|
listen 2171;
|
|
}
|