Skip to main content
Cadet | Tier 2
May 3, 2024

HTTPS issue

  • May 3, 2024
  • 4 replies
  • 179 views

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.

    This topic has been closed for replies.

    4 replies

    smithlooAuthor
    Cadet | Tier 2
    June 15, 2024

    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?

    Cadet | Tier 2
    June 18, 2024

     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.    
     

    Automation Anywhere Team
    June 21, 2024

    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

    Cadet | Tier 2
    May 9, 2025

    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.