1

I’m trying to connect my django heroku app with cloudamqp over ssl. Without it works fine.

To use ssl in celery I set BROKER_USE_SSL settings variable to True. Unfortunately the default 5672 port can’t handle ssl. So I tried to set the heroku config var CLOUDAMQP_RABBITMQ_AMQP_PORT to 443 and 5671 but both return unknown protocol. Maybe I miss something or you have a hint.

thanks in advance

t_io
  • 1,952
  • 1
  • 19
  • 27

1 Answers1

2

Add port :5671 to the broker url.

Carl Hörberg
  • 5,973
  • 5
  • 41
  • 47