Https in companion

Hello,
I have a json config like the following:
{
“providerOptions”: {
“google”: {
“key”: “XXXXXXXXXXXx”,
“secret”: “XXXXXXXXXXXXX”
},
“dropbox”: {
“key”: “***”,
“secret”: “***”
},
“instagram”: {
“key”: “***”,
“secret”: “***”
}
},
“server”: {
“host”: “localhost:3020”,
“protocol”: “https”
},
“filePath”: “/home/XXXXXXXX/src/uppy-companion”,

  "secret": "XXXXXXXXXXxxx",
  "debug": true
}

I ran companion like: “companion --config ./uppyconf.json”. And I get
Welcome to Companion! v1.2.0
Listening on http://0.0.0.0:3020
I point to https://localhost:3020 but it seems the app is not running. Since I use https why it says Listening on http ??
Thanks a lot

In my config I also have:
“sendSelfEndpoint”: “https://localhost:3020”,

but couldn’t create a post with 2 links!

It actually is running. The protocol is not reflecting in the log because it is hardcoded here https://github.com/transloadit/uppy/blob/providers-e2e-again/packages/%40uppy/companion/src/standalone/start-server.js#L11

If I access http :// localhost:3020/drive/list I get unauthorized (correct). When I use https I get:

Secure Connection Failed

The connection to localhost:3020 was interrupted while the page was loading.

    The page you are trying to view cannot be shown because the authenticity of the received data could not be verified.
    Please contact the website owners to inform them of this problem.

Without https I was able to access google drive. But not with https, because it seems it cannot connect to companion.

Thanks