mirror of https://github.com/apache/activemq.git
Merge pull request #400 from coheigea/AMQ-7322
AMQ-7322 - Add HTTPOnly flag to the webconsole + REST API Cookies
This commit is contained in:
commit
830a4c0391
|
@ -155,7 +155,10 @@
|
|||
</error-page>
|
||||
|
||||
<session-config>
|
||||
<session-timeout>30</session-timeout>
|
||||
<session-timeout>30</session-timeout>
|
||||
<cookie-config>
|
||||
<http-only>true</http-only>
|
||||
</cookie-config>
|
||||
</session-config>
|
||||
|
||||
<context-param>
|
||||
|
|
|
@ -71,4 +71,10 @@
|
|||
<url-pattern>/jolokia/*</url-pattern>
|
||||
</servlet-mapping>
|
||||
|
||||
</web-app>
|
||||
<session-config>
|
||||
<cookie-config>
|
||||
<http-only>true</http-only>
|
||||
</cookie-config>
|
||||
</session-config>
|
||||
|
||||
</web-app>
|
||||
|
|
Loading…
Reference in New Issue