OS: Ubuntu Server 20.40.
WebServer: Apache2
SSL: OpenSSL
SSL Module enabled
SSL files copied on server
SSL site configurated (above the code)
Apache Syntax: OK
Firewall: disabled
HTTP request works
HTTPS request do not works (timeout)
I'm missing some steps or what?
Can You help me please?
<VirtualHost *:80>
ServerName [server name]
ServerAlias [server alias with 'www' prefix]
ServerAdmin webmaster@localhost
DocumentRoot /var/www/[website path]/public_html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
<VirtualHost _default_:443>
ServerName [same server name]
ServerAlias [same server alias]
ServerAdmin webmaster@localhost
DocumentRoot [same root]
SSLEngine on
SSLCertificateFile /ssl/website_cert.crt
SSLCertificateKeyFile /ssl/myserver.key
</VirtualHost>