14 lines
353 B
Nix
Raw Permalink Normal View History

2025-03-13 13:43:50 +01:00
{jsonConfig, ...}: {
${jsonConfig.domains.baserow} = {
extraConfig = ''
reverse_proxy localhost:3000
header {
Strict-Transport-Security "max-age=31536000; includeSubDomains"
X-Content-Type-Options "nosniff"
X-Frame-Options "DENY"
Referrer-Policy "strict-origin-when-cross-origin"
}
'';
};
}