Skip to content

Commit

Permalink
Fix entrypoint.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
piyushroshan committed Apr 29, 2024
1 parent f54777b commit 5322d14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/chatbot/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ if [ "$TLS_ENABLED" = "true" ] || [ "$TLS_ENABLED" = "1" ]; then
echo "TLS_CERTIFICATE: $TLS_CERTIFICATE"
echo "TLS_KEY: $TLS_KEY"
gunicorn --timeout 600 --bind 0.0.0.0:${SERVER_PORT} --certfile $TLS_CERTIFICATE --keyfile $TLS_KEY --log-level=debug chatbot_api:app
else:
else
gunicorn --timeout 600 --bind 0.0.0.0:${SERVER_PORT} --log-level=debug chatbot_api:app
fi

0 comments on commit 5322d14

Please sign in to comment.