Ув. пользователи форума. Мне нужна помощь.
Я направил свой домен на сервера cloudflare и включил SSL протокол FULL и направил на свой сервер ubunut.
Проблема в том что если ввести адрес сайта без https он зайдёт на него и будет работать, но если ввести с https то браузер не может найти сайт и пишет "Не удается получить доступ к сайту".
Так же там есть еще один домен который я тоже включил ssl и направил на на сервер и вот с ним все нормально он заходит с протоколом и без.
В конф ssl на сервере я вписывал такое
<VirtualHost *:443>
ServerAdmin admin@sute1.ru
ServerName sute1.ru
DocumentRoot /var/www/sute1
# SSL Engine Switch:
# Enable/Disable SSL for this virtual host.
SSLEngine on
SSLProtocol all -SSLv2
# A self-signed (snakeoil) certificate can be created by installing
# the ssl-cert package. See
# /usr/share/doc/apache2.2-common/README.Debian.gz for more info.
# If both key and certificate are stored in the same file, only the
# SSLCertificateFile directive is needed.
SSLCertificateFile /etc/ssl/cathd.ru/cloudflare-ssl-cathd.pem
SSLCertificateKeyFile /etc/ssl/cathd.ru/cloudflare-ssl-cathd.key
</VirtualHost>
<VirtualHost *:443>
ServerAdmin admin@sute2.ru
ServerName sute2.ru
DocumentRoot /var/www/sute2.ru
# SSL Engine Switch:
# Enable/Disable SSL for this virtual host.
SSLEngine on
SSLProtocol all -SSLv2
# A self-signed (snakeoil) certificate can be created by installing
# the ssl-cert package. See
# /usr/share/doc/apache2.2-common/README.Debian.gz for more info.
# If both key and certificate are stored in the same file, only the
# SSLCertificateFile directive is needed.
SSLCertificateFile /etc/ssl/ultgame.ru/cloudflare-ssl-ultgame.pem
SSLCertificateKeyFile /etc/ssl/ultgame.ru/cloudflare-ssl-ultgame.key
</VirtualHost>