Rasa x in compose won't start (empty nginx config files)

Good afternoon,

Noob here, so please bear with me.

I’m trying to get Rasa X running in the docker compose setting. This page https://rasa.com/docs/rasa-x/installation-and-setup/install/docker-compose points to some nginx config files that don’t seem to exist

mkdir nginx-config-files
wget -qO nginx-config-files/nginx.conf https://storage.googleapis.com/rasa-x-releases/0.40.1/nginx-config-files/nginx-config-files/nginx.conf
wget -qO nginx-config-files/ssl.conf.template https://storage.googleapis.com/rasa-x-releases/0.40.1/nginx-config-files/nginx-config-files/ssl.conf.template
wget -qO nginx-config-files/rasax.nginx.template https://storage.googleapis.com/rasa-x-releases/0.40.1/nginx-config-files/nginx-config-files/rasax.nginx.template

Without those files, compose/nginx will startup with 0-byte config files and get in a restart loop. Am I missing something here?

Thanks in advance!

Joolz.

You’re right, there are typos in these commands double-specifying the directory, I will update the documentation for this. You can use these commands instead:

mkdir nginx-config-files
wget -qO nginx-config-files/nginx.conf https://storage.googleapis.com/rasa-x-releases/0.40.1/nginx-config-files/nginx.conf
wget -qO nginx-config-files/ssl.conf.template https://storage.googleapis.com/rasa-x-releases/0.40.1/nginx-config-files/ssl.conf.template
wget -qO nginx-config-files/rasax.nginx.template https://storage.googleapis.com/rasa-x-releases/0.40.1/nginx-config-files/rasax.nginx.template

Hi melinda,

Thanks, I have them now!

Joolz