- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for IsHSTSPreload (0.1 sec)
-
internal/config/browser/browser.go
defer configLock.RUnlock() if browseCfg.HSTSSeconds > 0 && browseCfg.HSTSIncludeSubdomains { return config.EnableOn } return config.EnableOff } // IsHSTSPreload - is HSTS 'preload' directive enabled func (browseCfg *Config) IsHSTSPreload() string { configLock.RLock() defer configLock.RUnlock() if browseCfg.HSTSSeconds > 0 && browseCfg.HSTSPreload { return config.EnableOn } return config.EnableOff
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jun 21 00:58:58 UTC 2024 - 5.9K bytes - Viewed (0) -
cmd/common-main.go
} if hstsSeconds := globalBrowserConfig.GetHSTSSeconds(); hstsSeconds > 0 { isubdom := globalBrowserConfig.IsHSTSIncludeSubdomains() isprel := globalBrowserConfig.IsHSTSPreload() os.Setenv("CONSOLE_SECURE_STS_SECONDS", strconv.Itoa(hstsSeconds)) os.Setenv("CONSOLE_SECURE_STS_INCLUDE_SUB_DOMAINS", isubdom) os.Setenv("CONSOLE_SECURE_STS_PRELOAD", isprel) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 21:50:11 UTC 2024 - 31.7K bytes - Viewed (0)