servisys / ispconfig_setup

ISPConfig autoinstaller and setup
GNU General Public License v3.0
507 stars 257 forks source link

soap_url in /var/lib/roundcube/plugins/ispconfig3_account/config/config.inc.php #287

Open dg-wfk opened 5 years ago

dg-wfk commented 5 years ago

Hi, the script worked well on a Debian 9 in OpenVZ. But in /var/lib/roundcube/plugins/ispconfig3_account/config/config.inc.php line 5 says:

$config['soap_url'] = 'https://192.177.167.44:8080/remote/';

192.177.167.44 is not my external IP address of the OpenVZ VPS. Should it not be the loopback interface or external IP address or the FQDN of the ISPConfig installation? For example:

$config['soap_url'] = 'https://localhost:8080/remote/'; or $config['soap_url'] = 'https://127.0.0.1:8080/remote/'; or $config['soap_url'] = 'https://[external IP address]:8080/remote/'; or $config['soap_url'] = 'https://[FQDN]:8080/remote/';