Tag: ssl

  • Add a separate SSL certificate for a subdomain in Directadmin

    by

    in

    Directadmin doesn’t have possibility to add SSL certificate for a subdomain, unless You add it as a separate domain in domain control. You may also use separate SSL certificates by creating a custom httpd (or nginx, but it would require to change the CAROOT line) file in user configuration dir i.e. loginroot.com.cust_httpd (or loginroot.com.cust_nginx if…

  • apache [warn] module ssl_module is already loaded, skipping (Solved)

    by

    in

    # httpd -t [Fri Jun 08 11:12:19 2012] [warn] module ssl_module is already loaded, skipping Syntax OK This happens, because ssl module is enabled in more than 1 place: # grep ssl_module -rI /etc/httpd/* conf/httpd.conf:LoadModule ssl_module /usr/lib64/httpd/modules/mod_ssl.so conf.d/ssl.conf:LoadModule ssl_module modules/mod_ssl.so we load all needed modules in one place – /etc/httpd/conf/httpd.conf. So we can safely comment…