diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-02-28 12:54:48 -0500 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-02-28 12:57:56 -0500 |
commit | ea6c3093ca7420f6aaf0c4fabd9cab4457aaf220 (patch) | |
tree | 5145e1080585814cf7abee31900d0964881d25fe /roles/owncloud/templates | |
parent | e4c3a05055e840b3e0d30f76a1fc4e4f5188135a (diff) | |
download | oldinfra-ea6c3093ca7420f6aaf0c4fabd9cab4457aaf220.tar.gz oldinfra-ea6c3093ca7420f6aaf0c4fabd9cab4457aaf220.zip |
increase client body size and cookie samesite -> none
Diffstat (limited to 'roles/owncloud/templates')
-rw-r--r-- | roles/owncloud/templates/config.php.j2 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/roles/owncloud/templates/config.php.j2 b/roles/owncloud/templates/config.php.j2 index 0a65ab8..5924575 100644 --- a/roles/owncloud/templates/config.php.j2 +++ b/roles/owncloud/templates/config.php.j2 @@ -79,4 +79,6 @@ $CONFIG = array ( 'provider-url' => 'https://authelia.simponic.xyz', 'redirect-url' => 'https://owncloud.internal.simponic.xyz/apps/openidconnect/redirect' ], + 'http.cookie.samesite' => 'None', + 'session_lifetime' => 60 * 60 * 24 ); |