mirror of
https://github.com/CPunch/openpunk-ansible.git
synced 2024-11-10 10:20:05 +00:00
12 lines
216 B
Plaintext
12 lines
216 B
Plaintext
|
server {
|
||
|
server_name git.{{ domain }};
|
||
|
listen 80;
|
||
|
|
||
|
location / {
|
||
|
add_header Permissions-Policy interest-cohort=();
|
||
|
proxy_pass http://localhost:3000;
|
||
|
}
|
||
|
|
||
|
client_max_body_size 100M;
|
||
|
}
|