...
The multicloud services which are based on uwsgi could utilize the https feature of uwsgi: https://uwsgi-docs.readthedocs.io/en/latest/HTTPS.html
You probably have to rebuild uwsgi with ssl-support:
On a debian server with uwsgi installed by pip this would be (as root):
apt-get install libssl-dev
pip install uwsgi -I --no-cache-dir
-I
for reinstall, --no-cache-dir
for building new from scratch.
The question would be: who/how to generate key and cert ?
...