I am working on getting rasa x with SSL by following Customize Your Deployment, but it is not working. Searching for the solution, I could find this (How to debug HTTPS/SSL not working in Rasa X with docker-compose - #2 by justyn) in the forum but have no idea what exactly to do. Seems the comment is about changing docker-compose.yml file in etc/rasa, right? If so, it means I should:
nginx:
restart: always
image: "nginx:1.19"
ports:
- "80:8080"
- "443:8443"
volumes:
- ./certs:/etc/certs
- ./nginx-config-files/nginx.conf:/etc/nginx/nginx.conf
- /etc/nginx/certs/{fullchain,privkey}.pem:/etc/certs/{fullchain,privkey}.pem
# - ./nginx-config-files/ssl.conf.template:/etc/nginx/templates/ssl.conf.template
# - ./nginx-config-files/rasax.nginx.template:/etc/nginx/templates/rasax.nginx.template
environment:
<<: *nginx-host-variables
depends_on:
- rasa-x
- rasa-production
- app
Is that right? The truth is that it’s not working…
Any help would be greatly appreciated. Thanks.