Skip to main content

How to move my configuration from HTTP for all connections to HTTPS for all connections?

My website is based on HTTPS, so HTTP stream will be blocked.

does anyone help?

In my search to enhance my website performance, I recently came across an insightful article discussing technical checklist, which provided some useful general guidelines. Should I apply these techniques? Have they helped us improve website performance?


 An "https issue" typically refers to problems related to secure HTTP (HTTPS) connections on websites. Common issues include expired SSL certificates, mixed content warnings (loading both secure and insecure resources), or configuration errors in HTTPS setup. Ensure SSL/TLS certificates are valid and properly configured, and check for any insecure content loading on secure pages, which can lead to security warnings or functionality issues in browsers.    
 


Hello @smithloo 

Please follow the article below to convert the Control Room from HTTP to HTTPS

https://apeople.automationanywhere.com/s/article/Import-HTTPS-and-CA-certificates


HTTP to HTTPS Migration

Edit your server config file to add permanent redirects:

For Apache:

<VirtualHost *:80>
ServerName example.com
Redirect permanent / https://example.com/
</VirtualHost>

For Nginx:

server {
listen 80;
server_name example.com;
return 301 https://$server_name$request_uri;
}

Then update internal links and resources to use HTTPS URLs. Test thoroughly after implementation.

This forces all traffic to use secure connections, preventing browser blocks on HTTP content.