Posts

How to install Apache superset docker container, configure ssl

 login in to ubuntu machine  install docker host clone  the repo:  https://github.com/apache/superset.git update the docker-compose.yml file : expose the 443 port     5- update the nginx.conf file , add:  server {         listen 443 ssl;         server_name backend.samiphotolishz.com;         ssl_certificate /etc/ssl/certs/certificate.crt;         ssl_certificate_key /etc/ssl/certs/private.key;         # Other SSL configurations like SSL protocols and ciphers can be added here         location / {             proxy_pass http://superset_app;             proxy_set_header Host $host;          ...