Hi AEM Community,
I have the below redirect rule -
RewriteRule ^/content/brandA/us/en/(.*).html$ /$1 [R=302,L,QSA]
In my network trace, the below redirects are happening -
Request 1 - https://www.brandA.com/content/brandA/us/en/index.html
This request has a 302 redirect with response.location set to http://www.brandA.com/index.html
Request 2 - http://www.brandA.com/index.html
This request also a 302 redirect with response.location set to https://www.brandA.com/index.html
Request 3 - https://www.brandA.com/index.html
As we see this 2nd request is not necessary and should not be there.
Currently I am using a workaround for this by modifying my rewrite rule to below -
Thanks @Mohit_KBansal for the below suggestion-
RewriteRule ^/content/brandA/us/en/(.*).html$ https://%{SERVER_NAME}/$1 [R=302,L,QSA]
I wanted to know why https to http and then again http to https redirection is happening by default.
I referred to the below link on "AEM redirects user back to http when accessed through SSL/TLS terminated load balancer" -
https://experienceleague.adobe.com/docs/experience-cloud-kcs/kbarticles/KA-16936.html?lang=fr-FR
I updated the below configuration in my vhost -
RequestHeader set X_FORWARDED_PROTO 'https' env=HTTPS
and then added the below OSGi configuration as the above blog suggested -
This didn't work either.
Any suggestions for troubleshooting this issue ?
@Jörg_Hoh , @Albin_Issac , @arunpatidar , @Mohit_KBansal , @kautuk_sahni
Thanks,
Rohan Garg
Solved! Go to Solution.
Hi All,
The best solution other than the alternate redirect suggested in question above is below -
Enable HSTS (HTTP Strict-Transport-Security) in dispatcher configuration.
HSTS ensures that the browsers always connect to a website over HTTPS.
The file is located at the below location -
/src/conf.d/rewrites/default_rewrites.rules.
Uncommenting this rule in our custom rewrite rules ensured the HTTPS connection.
Could you please share your all redirect rules?
I believe you have too many redirect and all could be PT or you should considering to add
http to https as first rule without PT.
Hi Arun, I have refactored my redirects to the below ones -
#Rule 1 for root redirection
RewriteRule "^/?$" "/content/brandA/us/en/home.html" [PT,L]
#Rule 2 for non content pages and cross domain requests handling
RewriteCond %{REQUEST_URI} ^/content
RewriteCond %{REQUEST_URI} !^/content/dam/${CONTENT_FOLDER_NAME}
RewriteCond %{REQUEST_URI} !^/content/experience-fragments/${CONTENT_FOLDER_NAME}
RewriteRule !^/content/brandA/us/en - [R=404,L,NC]
#Rule 3 for robots.txt
#Redirecting robots.txt based URLs to DAM resource path
RewriteRule ^/robots.txt$ /content/dam/brandA/robots.txt [NC,PT,L]
#Rule 4 for sitemap.xml
#Redirecting sitemap.xml based URLs to Root Yourgi Sitemap XML
RewriteRule ^/sitemap.xml$ /content/brandA/us/en.sitemap.xml [NC,PT,L]
#Rule 5 for handling non friendly full /content URLs
## If there are URLs that are not friendly urls, then this will shorten up and redirect
RewriteRule ^/content/brandA/us/en/(.*).html$ /$1 [R=302,L,QSA]
This above redirect rule is giving the issue
#Rule 6 for passing full request to Publish
## Handle the HTML content page
RewriteCond %{REQUEST_URI} !^/apps
RewriteCond %{REQUEST_URI} !^/bin
RewriteCond %{REQUEST_URI} !^/content
RewriteCond %{REQUEST_URI} !^/etc
#RewriteCond %{REQUEST_URI} !^/home
RewriteCond %{REQUEST_URI} !^/libs
RewriteCond %{REQUEST_URI} !^/saml_login
RewriteCond %{REQUEST_URI} !^/system
RewriteCond %{REQUEST_URI} !^/tmp
RewriteCond %{REQUEST_URI} !^/var
RewriteRule ^/(.+)$ /content/brandA/us/en/$1.html [PT,QSA,L]
We can add redirect rule for converting http to https but ideally there should not be a need to do so I think. Is that not correct ?
Hello @Rohan_Garg
The only reason I see is that your webserver's virtual host support HTTP protocol. Now, saying this, CDN to Apache communication is happening on 80 port instead of 443 port, which converts HTTPS protocol to HTTP, and this cause any apache redirection happening on HTTP protocol.
Please check and make sure, that CDN to apache communication is happening on HTTPS protocol.
Thanks @Mohit_KBansal for the response! Couple of queries in this -
1. CDN to Apache communication is happening on 80 port instead of 443 port.
If this is true then where is the SSL offloading happening ? At CDN ?
I was assuming that the SSL offloading was happening in Load Balancers on the cloud.
So CDN to Load Balancer might be on HTTPs but Load Balancer to Apache stands to reason might be on HTTP.
If so, setting X-Forwarded-Proto in request headers to https should have helped I think.
2. How can I verify on which protocol is the communication happening between different entities ?
Say Fastly CDN to Load Balancers or LBs to Webserver ?
Thanks for your response again.
1. Yes, in this case, offloading may be happening on LB. Regarding X-Forwarded-Proto, i believe, it needs to be configured on LB and not apache.
2. You have to check with Cloud Manager support team to confirm this.
1. This again would need to be answered by Cloud Manager Support Team then if it has to be configured on LB.
https://experienceleague.adobe.com/docs/experience-cloud-kcs/kbarticles/KA-16936.html?lang=fr-FR
This article above explicitly stated that setting the X-Forwarded-Proto on Dispatcher should have worked.
The documentation mention that
"Refer to the documentation of your load balancer to find out which header it sets to notify downstream systems that it terminated SSL. For simplicity, in these steps we assume that the correct HTTP header is “X-Forwarded-Proto: https”"
Alternatively, you can set this header in your apache vhost (https directive).
As your ssl may be breaking on LB, you can not configure it on apache (as its vhost is supporting http)
You have to check with the support team, which header attribute is used to pass https downstream and set same in your dispatcher farm.
I have reached out to Cloud Support Team for both the queries. I will update once as per their response. Thanks for your support and workaround fix @Mohit_KBansal !
@Rohan_Garg - Any update on why the redirection happened for you ?
No, the ticket is still pending with Adobe on this.
Hi All,
The best solution other than the alternate redirect suggested in question above is below -
Enable HSTS (HTTP Strict-Transport-Security) in dispatcher configuration.
HSTS ensures that the browsers always connect to a website over HTTPS.
The file is located at the below location -
/src/conf.d/rewrites/default_rewrites.rules.
Uncommenting this rule in our custom rewrite rules ensured the HTTPS connection.
@Rohan_Garg - Does this mean that the SSL termination is not happening at Load Balancer anymore ?
No, The SSL certificates are still installed in the load balancer/cloud instance.
As we don't have any ssl cert keys defined in our vhost configuration yet the site is served correctly over https implies the offloading at LB is happening correctly.
The Dispatcher/Web Server and AEM are now not accessed with http:// but https://.
As per below article the backend connection was http:// based. This is not the case anymore.
https://experienceleague.adobe.com/docs/experience-cloud-kcs/kbarticles/KA-16936.html?lang=en
@kautuk_sahni - Could you mark the above answer as correct to close this issue ?
Post Adobe recommendation, we are forcing the https redirection from Dispatcher rewrite rules to ensure no manual redirection rules are written.
Views
Likes
Replies
Views
Likes
Replies