Я пытаюсь настроить локально (для целей разработки / тестирования) SSL-сайт с использованием Apache и mod_ssl, и это то, что у меня есть в моих файлах VirtualHost:
/etc/httpd/conf.d/local.conf
<VirtualHost *:80>
ServerName reptool.dev
DocumentRoot /var/www/html/magnific/reptooln_admin/web
<Directory /var/www/html/magnific/reptooln_admin/web>
# enable the .htaccess rewrites
AllowOverride All
Order allow,deny
Allow from All
</Directory>
ErrorLog /var/log/httpd/reptool-error.log
CustomLog /var/log/httpd/reptool-access.log combined
</VirtualHost>
/etc/httpd/conf.d/local-ssl.conf
<VirtualHost reptool.dev:443>
ServerName reptool.dev:443
DocumentRoot /var/www/html/magnific/reptooln_admin/web
<Directory /var/www/html/magnific/reptooln_admin/web>
# enable the .htaccess rewrites
AllowOverride All
Order allow,deny
Allow from All
</Directory>
ErrorLog /var/log/httpd/reptool-error.log
CustomLog /var/log/httpd/reptool-access.log combined
SSLEngine on
SSLCertificateFile /etc/pki/tls/certs/ca.crt
SSLCertificateKeyFile /etc/pki/tls/private/ca.key
</VirtualHost>
Первый (без SSL) работает нормально, но с SSL я не получил ошибку 404:
The requested URL /app_dev.php was not found on this server.
Зачем? Что мне не хватает на уровне конфигурации?
Ваше имя сервера "reptool.dev:443" мне не подходит, в нем не должно быть порта. Пытаться:
ServerName reptool.dev