Skip to content

Commit

Permalink
Set cookie-secure and cookie-http-only to true by default for WebFilt…
Browse files Browse the repository at this point in the history
…er config
  • Loading branch information
jonesde committed Sep 26, 2018
1 parent 9758f0f commit fe5f83b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MoquiConf.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@
<!-- Domain of session id cookie. Default is based on incoming request. -->
<!-- <init-param name="cookie-domain" value=".mywebsite.com"/> -->
<!-- Should cookie only be sent using a secure protocol? Default is false. -->
<init-param name="cookie-secure" value="false"/>
<init-param name="cookie-secure" value="true"/>
<!-- Should HttpOnly attribute be set on cookie ? Default is false. -->
<init-param name="cookie-http-only" value="false"/>
<init-param name="cookie-http-only" value="true"/>
<!-- Are you debugging? Default is false. -->
<init-param name="debug" value="false"/>
<!-- Do you want to shutdown HazelcastInstance during web application undeploy process? Default is true. -->
Expand Down

0 comments on commit fe5f83b

Please sign in to comment.