Certificat OK mais site inaccessible

Bonjour, mon site est up, certificat obtenu via dns-ovh, http ok mais https me dit :

"Ce site est inaccessible
solutionazotee.fr n'autorise pas la connexion."

Mes connecteurs :

 <Connector port="8080" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="443" />
    <!-- A "Connector" using the shared thread pool-->
    <!--
    <Connector executor="tomcatThreadPool"
               port="8080" protocol="HTTP/1.1"
               connectionTimeout="20000"
               redirectPort="8443" />
    -->
    <!-- Define an SSL/TLS HTTP/1.1 Connector on port 8443
         This connector uses the NIO implementation. The default
         SSLImplementation will depend on the presence of the APR/native
         library and the useOpenSSL attribute of the AprLifecycleListener.
         Either JSSE or OpenSSL style configuration may be used regardless of
         the SSLImplementation selected. JSSE style configuration is used below.
    -->
    <Connector port="443" protocol="org.apache.coyote.http11.Http11NioProtocol"
               maxThreads="150" SSLEnabled="true" scheme="https" secure="true">
        <SSLHostConfig>
            <Certificate
                certificateFile="conf/cert.pem"
                certificateKeyFile="conf/privkey.pem"
                certificateChainFile="conf/chain.pem"
            />
        </SSLHostConfig>
    </Connector>

Pareil avec le port 8443 a la place du 443

Mes tables ip :

ACCEPT     tcp  --  anywhere             anywhere             tcp dpt:https
ACCEPT     tcp  --  anywhere             anywhere             tcp dpt:8443

Je peux lire des réponses en Anglais : Ofc

Mon nom de domaine est : solutionazotee.fr

Mon serveur Web est (inclure la version) : tomcat 9

Le système d’exploitation sur lequel mon serveur Web s’exécute est (version incluse) : ubuntu server 20.04

Ok c'est bon, avec mes regles iptables :

ACCEPT tcp -- anywhere anywhere tcp dpt:https
ACCEPT tcp -- anywhere anywhere tcp dpt:8443

et les bonnes regles ufw allow 80/443/8080/8443

1 Like