Have a multiserver setup with a dedicated ISPConfig main gui server. When it was installed I did not install an SSL cert, but now would like to add one. Whats the best way to add an SSL after initial install? Thanks!
Remove the # in front of the ssl config lines in the ispconfig.vhost file (/etc/apache2/sites-available) and then place the ssl cert, key and bundle file in the locations that you can see in the vhost file. Do not alter the paths, place your files under the exact file path and names that you see there.
Till, I have an api script that was working fine before I added SSL to my master. Now I keep getting SOAP Error: Could not connect to host. I have changed my script settings by just adding an s to https $soap_location = 'https://my_ispconfig_host.com:8080/remote/index.php'; $soap_uri = 'https://my_ispconfig_host:8080/remote/'; is there anything else that has to be done that you can think of? Thanks!
Till, Found the solution here: https://www.howtoforge.com/community/threads/soap-error-could-not-connect-to-host.60623/ had to add: $client = new SoapClient( null, array( 'location' => $soap_url, 'uri' => $soap_uri, 'exceptions' => 1, 'stream_context'=> stream_context_create(array('ssl'=> array('verify_peer'=>false,'verify_peer_name'=>false))), 'trace' => false