Swagger ui over https

hi, I have a SStack service exposed over https.
When I try to load the swagger ui page I get an error since the ajax call to get the info tries to use http

As far as I remember , this was working in a previous version of SStack …
What should I check ?
thank you
enrico

I don’t remember anything changing here, if you’ve configured SSL on your website in IIS it should just work, is ?debug=requestinfo returning https:// links? If it’s not you might be going through a SSL-terminated proxy in which case you can change it to us SSL links with:

SetConfig(new HostConfig {
    UseHttpsLinks = true
});

Otherwise you can specify a Config.WebHostUrl as the absolute URL which ServiceStack will use as its base url for outgoing links.