Open shrugalic opened 6 years ago
Like the title says, the SUS settings at https://<hostname>/webadmin/susSettings.php don't allow entering a base URL that starts with https.
https://<hostname>/webadmin/susSettings.php
Apparently it's checked by the javascript function validBaseUrl, which only allows two patterns that start with http:\/\/.
validBaseUrl
http:\/\/
May I suggest allowing https?:\/\/ instead?
https?:\/\/
This seems to work, I changed it in /var/www/html/webadmin/susSettings.php (twice each in validBaseUrl and updateBaseUrl) and restarted Apache with sudo service apache2 restart && service apache2 status
/var/www/html/webadmin/susSettings.php
updateBaseUrl
sudo service apache2 restart && service apache2 status
Like the title says, the SUS settings at
https://<hostname>/webadmin/susSettings.php
don't allow entering a base URL that starts with https.Apparently it's checked by the javascript function
validBaseUrl
, which only allows two patterns that start withhttp:\/\/
.May I suggest allowing
https?:\/\/
instead?