Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions WebContent/WEB-INF/spring-security.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<custom-filter ref="xssFilter" before="FIRST"/>
<custom-filter position="BASIC_AUTH_FILTER" ref="basicAuthFilter"/>
<session-management session-fixation-protection="none" />
<session-management session-fixation-protection="newSession" />
</http>

<http use-expressions="true" disable-url-rewriting="true" pattern="/httpds/**"
Expand All @@ -49,7 +49,7 @@

<custom-filter ref="xssFilter" before="FIRST"/>
<custom-filter position="BASIC_AUTH_FILTER" ref="basicAuthFilter"/>
<session-management session-fixation-protection="none" />
<session-management session-fixation-protection="newSession" />
</http>

<http use-expressions="true" disable-url-rewriting="true" pattern="/httpds-secure/**"
Expand All @@ -72,7 +72,7 @@

<custom-filter ref="xssFilter" before="FIRST"/>
<custom-filter position="BASIC_AUTH_FILTER" ref="basicAuthFilter"/>
<session-management session-fixation-protection="none"/>
<session-management session-fixation-protection="newSession" />
</http>

<http use-expressions="true" disable-url-rewriting="true" pattern="/api/secure/work-items/**"
Expand All @@ -95,7 +95,7 @@

<custom-filter ref="xssFilter" before="FIRST"/>
<custom-filter position="BASIC_AUTH_FILTER" ref="basicAuthFilter"/>
<session-management session-fixation-protection="none"/>
<session-management session-fixation-protection="newSession" />
</http>

<http use-expressions="true" disable-url-rewriting="true" pattern="/api/secure/threads/**"
Expand All @@ -118,7 +118,7 @@

<custom-filter ref="xssFilter" before="FIRST"/>
<custom-filter position="BASIC_AUTH_FILTER" ref="basicAuthFilter"/>
<session-management session-fixation-protection="none"/>
<session-management session-fixation-protection="newSession" />
</http>

<http use-expressions="true" disable-url-rewriting="true"
Expand Down Expand Up @@ -447,7 +447,7 @@
login-processing-url="/login.htm"/>
<custom-filter ref="xssFilter" before="FIRST"/>
<custom-filter after="SECURITY_CONTEXT_FILTER" ref="setDataSessionFilter" />
<session-management session-fixation-protection="none" />
<session-management session-fixation-protection="newSession" />
<logout logout-url="/logout.htm" invalidate-session="true" delete-cookies="JSESSIONID"
success-handler-ref="headerWriterLogoutHandler"/>
</http>
Expand Down
3 changes: 3 additions & 0 deletions WebContent/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,9 @@
</listener>
<session-config>
<session-timeout>30</session-timeout>
<cookie-config>
<http-only>true</http-only>
</cookie-config>
</session-config>
<welcome-file-list>
<welcome-file>home.jsp</welcome-file>
Expand Down
Loading