diff options
author | Alan Pearce | 2024-05-30 14:01:35 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-30 14:01:35 +0200 |
commit | b53769462bf830f860b7d741a3d0801afdbc9aa2 (patch) | |
tree | 1cdfffca23900dcf54cfa1f78e6012a73221a042 /internal/config/default.go | |
parent | 4698a97974ae82e7bd8592828c58294b222a58ff (diff) | |
download | searchix-b53769462bf830f860b7d741a3d0801afdbc9aa2.tar.lz searchix-b53769462bf830f860b7d741a3d0801afdbc9aa2.tar.zst searchix-b53769462bf830f860b7d741a3d0801afdbc9aa2.zip |
feat: make security headers stricter
Diffstat (limited to 'internal/config/default.go')
-rw-r--r-- | internal/config/default.go | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/internal/config/default.go b/internal/config/default.go index 370057e..5e7b388 100644 --- a/internal/config/default.go +++ b/internal/config/default.go @@ -1,6 +1,7 @@ package config import ( + "strconv" "time" "github.com/pelletier/go-toml/v2" @@ -12,6 +13,11 @@ var nixpkgs = Repository{ Repo: "nixpkgs", } +const none = "'none'" +const self = "'self'" + +const maxAge = (1 * 365 * 24 * time.Hour) + var defaultConfig = Config{ DataPath: "./data", Web: &Web{ @@ -20,10 +26,24 @@ var defaultConfig = Config{ BaseURL: mustURL("http://localhost:3000"), Environment: "development", ContentSecurityPolicy: CSP{ - DefaultSrc: []string{"'self'"}, + DefaultSrc: []string{none}, + BaseURI: []string{none}, + ImgSrc: []string{self}, + StyleSrc: []string{self}, + // added dynamically based on final value of BaseURL + ScriptSrc: []string{}, + FormAction: []string{self}, + ConnectSrc: []string{self}, }, Headers: map[string]string{ + "strict-transport-security": "max-age=" + strconv.FormatFloat( + maxAge.Seconds(), + 'f', + 0, + 64, + ), "x-content-type-options": "nosniff", + "x-frame-options": "DENY", }, }, Importer: &Importer{ |