Website Http to HTTPS movement
Hi,
Could you please provide your inputs on the below
1> what is adavantage of Configuring Mutual SSL Between Dispatcher and AEM as per http://docs.adobe.com/docs/en/dispatcher/disp-ssl.html#par_title_2.
trying to understand the reason, when user browser hits dispacther say https://www.abb.com it https by then ,
now what is the need to make request from dispacther from dispacther to AEM again ssl??
2> should i get spearate CA certificates for dispacther and cq instance, or just one certifacte for both will do??
https://docs.adobe.com/docs/en/dispatcher/disp-ssl.html#CREATING OR OBTAINING CA-SIGNED CERTIFICATES
If I have purchased ssl certificate from CA, THEN IN the folder
/usr/local/ssl/misc.
should i run the command ./CH.sh -newreq if not what are the exacat commands if I have thrid party CA certificate with me
3> Where does dispkey.pem present in Apache server
docs.adobe.com/docs/en/dispatcher/disp-ssl.html#Configuring SSL for the Dispatcher Module
4>http://docs.adobe.com/docs/en/dispatcher/disp-ssl.html#Adding the CA Cert to the Render's Truststore
What is the need of adding CA certificate to JVM???
5>I need to re-direct 301 at dispacther,i looking at when client browsers hit the dspacther it can redirect to https.
so what is the exact entry i will do for this activity in dispacther.any or any apache config files.could you provide the sinnpet.??
Things i have done:-
I have setup an redirect rule as per https://docs.adobe.com/docs/en/cq/5-6-1/deploying/config-ssl.html#Forcing the Use of the SSL Port
Click the /etc/map/http folder and click Create > Create Node:
Name: localhost.4502
Type: sling:mapping
Create the following property for this node:
Name: sling:redirect
Type: String
Value: https://localhost:5433
Name: sling:status
Type: Long
So i see that when the hit the url http://localhost:4502 it redirects to https://localhost:5433.
But I see that this is happening at AEM instance ,but instead want it at dispatcher level.how to do it??
6>
I have the CA certificate for SSL. as per https://docs.adobe.com/docs/en/cq/5-6-1/deploying/config-ssl.html#OBTAIN A CREDENTIAL FOR USE IN PRODUCTION
Now what is the order i should execute the commands the commands under the folder [quickstart_dir]/ssl
can i just run the below commands
command1
keytool -importcert -trustcacerts -file rootcert.pem -keystorekeystorename.keystore -alias root
command2
keytool -importcert -trustcacerts -file CACertificateName.crt -keystore keystorename.keystore
Or do I have run the below commands (command3 and command4) and then run the (command1 and command2) ,please suggest
command3
keytool -genkeypair -keyalg RSA -validity 3650 -alias cqse -keystore [quickstart_dir]/ssl/keystorename.keystore -keypass key_password -storepass storepassword -dname "CN=Host Name, OU=Group Name, O=Company Name,L=City Name, S=State, C=Country_ Code"
command4
keytool -certreq -alias "LC Cert" -keystorekeystorename.keystore -file LCcertRequest.csr
7.I need to move all the js , css and DAM images present in instance http://localhost to https://localhost ,how do i acheive it?