I changed my "config.js" file to accomodate remote connections e.g.
'use strict';
var SC = SC || {};
SC.config = {
service_control_url: 'http://MyServerName:33333/api/'
};
But when I upgrade, the installer reverts the file back to the default (out of the box version) i.e.
'use strict';
var SC = SC || {};
SC.config = {
service_control_url: 'http://localhost:33333/api/'
};
So stuff stops working.
Is it possible that, when upgrading, the installer honours the existing configuration?