The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

URI::amqps - secure AMQP (RabbitMQ) URI

SYNOPSIS

    my $uri = URI->new('amqps://user:pass@host.domain:1234/');
    my $ar = AnyEvent::RabbitMQ->new->load_xml_spec()->connect(
        host  => $uri->host,
        port  => $uri->port,
        user  => $uri->user,
        pass  => $uri->password,
        vhost => $uri->vhost,
        tls   => $uri->secure,
        ...
    );
=head1 DESCRIPTION

URI extension for secure AMQP protocol (https://www.rabbitmq.com/uri-spec.html)

same as URI::amqp

LICENSE

Copyright (C) Avast Software.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

Jan Seidl <seidl@avast.com>