remove HTTP connection in AppWorks

We deployed appworks and everything is configured in HTTPS , when i comment/remove the HTTP port in server.xml , when i open the appworks service i find all my apps stuck in the Deploying phase.

Any help is much appreciated.

Comments

  • What have you put for the "AppWorks Gateway Server URL" in Configuration > Settings, is it the https URL?

    Any errors in the Logs > C:\Program Files\Apache Software Foundation\Tomcat 9.0\logs\ (<<< Change 'tomcat 9' to what ever your version is)

    Try putting a redirect instead of commenting the port out (this example redirects to https 443 port from http 80)

    <Connector port="80" protocol="HTTP/1.1"
        connectionTimeout="20000"
        redirectPort="443" 
        maxConnections="12000"
        maxThreads="2048"
        useBodyEncodingForURI="true"
        maxKeepAliveRequests="-1"
        keepAliveTimeout="6000"  />