mirror of https://github.com/status-im/codimd.git
feat(hsts): trun includeSubdomain to false
BREAKING CHANGE: change default setting from `true` to `false` Signed-off-by: BoHong Li <raccoon@hackmd.io>
This commit is contained in:
parent
66ec25dddb
commit
40b6b06f57
|
@ -14,7 +14,7 @@ module.exports = {
|
||||||
hsts: {
|
hsts: {
|
||||||
enable: true,
|
enable: true,
|
||||||
maxAgeSeconds: 60 * 60 * 24 * 365,
|
maxAgeSeconds: 60 * 60 * 24 * 365,
|
||||||
includeSubdomains: true,
|
includeSubdomains: false,
|
||||||
preload: true
|
preload: true
|
||||||
},
|
},
|
||||||
csp: {
|
csp: {
|
||||||
|
|
Loading…
Reference in New Issue