"/etc/httpd/conf.d/ssl.conf" の3ヵ所を変更する。
#
# When we also provide SSL we have to listen to the
# standard HTTP port (see above) and to the HTTPS port
#
Listen 10443
...
##
## SSL Virtual Host Context
##
# General setup for the virtual host, inherited from global configuration
#DocumentRoot "/var/www/html"
ServerName www.example.com:10443
で、SELinuxが有効になっているとブロックされるので、ラベルを追加する。
semanage port -a -t http_port_t -p tcp 10443

