diff options
author | 2022-06-03 15:40:38 +0200 | |
---|---|---|
committer | 2022-06-03 15:40:38 +0200 | |
commit | 327d3f001f1cc219c4a718edf23b976c29c19487 (patch) | |
tree | 7fbc505601461f22eeeea6e966b9df5a43b4cafc /testrig/config.go | |
parent | [chore] Adds Issue templates to Github (#626) (diff) | |
download | gotosocial-327d3f001f1cc219c4a718edf23b976c29c19487.tar.xz |
[feature] Start adding advanced configuration options, starting with `samesite` (#628)
* fix incorrect port being used for db
* start adding advanced config flags
* use samesite lax by default
Diffstat (limited to 'testrig/config.go')
-rw-r--r-- | testrig/config.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/testrig/config.go b/testrig/config.go index 64b8649aa..e424670fa 100644 --- a/testrig/config.go +++ b/testrig/config.go @@ -94,4 +94,6 @@ var TestDefaults = config.Configuration{ SyslogEnabled: false, SyslogProtocol: "udp", SyslogAddress: "localhost:514", + + AdvancedCookiesSamesite: "lax", } |