/home/techb158/trello-import.abdallabala.com/docker
Edit: /home/techb158/trello-import.abdallabala.com/docker/nginx.conf (684B)
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
# Trello loads the connector in an iframe. Do not add X-Frame-Options: DENY/SAMEORIGIN.
add_header Referrer-Policy "strict-origin-when-cross-origin" always;
add_header X-Content-Type-Options "nosniff" always;
location = /healthz {
access_log off;
add_header Content-Type text/plain;
return 200 "ok\n";
}
location = /js/config.js {
add_header Cache-Control "no-store" always;
try_files $uri =404;
}
location ~* \.(?:html)$ {
add_header Cache-Control "no-store" always;
try_files $uri =404;
}
location / {
try_files $uri $uri/ =404;
}
}