cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

How can hybris 5.5.1 Telco Accelerator be configured to permanently run in https mode instead of switching between http and https?

0 Likes
View Entire Topic
hiddebroerse
Participant
0 Likes

In spring-security-config.xml

         <!-- SSL / AUTHENTICATED pages -->
         <security:intercept-url pattern="/my-account*" access="ROLE_CUSTOMERGROUP" requires-channel="https" />
         <security:intercept-url pattern="/my-account/**" access="ROLE_CUSTOMERGROUP" requires-channel="https" />
 
         <!-- Force every page to SSL -->
         <security:intercept-url pattern="/**" requires-channel="https" />

Former Member
0 Likes

This alone does not work as it forces the user to log in.

We want the my account area and the checkout to require authentication as before, the rest of the shop should work without any authentication.

hiddebroerse
Participant
0 Likes

I changed my config example