You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The AMQPS protocol support was introduced in Symfony 5.2.
872
869
873
870
To use Symfony's built-in AMQP transport, you need the AMQP PHP extension.
874
-
If you want to use TLS/SSL encrypted AMQP you must provide a CA certificate. You need to set it using ``amqp.cacert = /etc/ssl/certs`` (path depends on your system) in your ``php.ini`` file or by setting the ``cacert`` parameter (e.g ``amqps://localhost?cacert=/etc/ssl/certs/``)
875
-
By default TLS/SSL encrypted AMQP uses port 5671. You can overwrite this behavior by setting the ``port`` parameter (e.g. ``amqps://localhost?cacert=/etc/ssl/certs/&port=12345``).
871
+
If you want to use TLS/SSL encrypted AMQP, you must also provide a CA certificate.
872
+
Define the certificate path in the ``amqp.cacert`` PHP.ini setting
873
+
(e.g. ``amqp.cacert = /etc/ssl/certs``) or in the ``cacert`` parameter of the
0 commit comments