Hey everyone,
Needed some help.
I created a rasa chatbot and deployed it on server with nginx and ubuntu 18.4, but when I hit the url
https://<my_domain_name>/slacky/, nginx gives 404 error i.e it is unable to listen rasa chatbot
running on 0.0.0.0:5055.
endpoints.yml
action_endpoint:
url: "http://localhost:5055/webhook"
nginx/sites-enables/default/
server {
server_name app.phrazor.com;
root /home/ubuntu/index_page;
index index.html;
location = /favicon.ico { access_log off; log_not_found off; }
location = / {
root /home/ubuntu/index_page;
index login.html;
}
# location /accenture_static/ {
# root /home/ubuntu/accenture_dashboard;
#}
location /slacky/ {
include proxy_params;
proxy_pass http://0.0.0.0:5055/;
}
thanks in advance.