Проект на symfony 3, есть рассылка телеграм уведомлений с помощью RabbitMQ, после блокировки telegram перестала работать. Полагаю, что нужно использовать прокси, но как не знаю.
Вот так выглядит конфигурация RabbitMQ:
old_sound_rabbit_mq:
connections:
default:
host: %rabbit_mq_host%
port: %rabbit_mq_port%
user: %rabbit_mq_user%
password: %rabbit_mq_pswd%
vhost: /
lazy: true
producers:
notification_create:
connection: default
exchange_options: { name: 'notification_create', type: direct }
queue_options: {name: 'notification_create'}
consumers:
notification_create:
connection: default
exchange_options: { name: 'notification_create', type: direct }
queue_options: { name: 'notification_create' }
callback: notification_consumer
Пытался сюда прописывать данные прокси, но так это не работает.