Example of the cookie option

This commit is contained in:
Min-Soo Kim 2018-08-02 00:35:27 +09:00
parent d090f402cc
commit 93a35c251b
10 changed files with 36 additions and 4 deletions

View file

@ -56,6 +56,7 @@
var http_port = {Context::get("_http_port") ?: 'null'};
var https_port = {Context::get("_https_port") ?: 'null'};
var enforce_ssl = {Context::get('_use_ssl') === 'always' ? 'true' : 'false'};
var cookie_ssl = {Context::isCookieSSL() ? 'true' : 'false'};
var ssl_actions = {json_encode(array_keys(Context::getSSLActions()))};
var xeVid = null;
</script>