@brook.gottlieb
Для настройки phpMyAdmin для использования SSL-соединения выполните следующие шаги:
1 2 3 4 5 6 7 8 |
<VirtualHost *:443> ServerAdmin webmaster@localhost DocumentRoot /var/www/html ServerName yourdomain.com SSLEngine on SSLCertificateFile /path/to/your_domain_name.crt SSLCertificateKeyFile /path/to/your_domain_name.key </VirtualHost> |
1
|
sudo systemctl restart httpd |
1 2 3 4 5 |
$cfg['ForceSSL'] = true; $cfg['Server'] = 'localhost'; $cfg['ssl'] = true; $cfg['ssl_key'] = '/path/to/your_domain_name.key'; $cfg['ssl_cert'] = '/path/to/your_domain_name.crt'; |
Теперь phpMyAdmin будет использовать SSL-соединение.