博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【原创】RabbitMQ 之 HTTP server 插件(翻译)
阅读量:6154 次
发布时间:2019-06-21

本文共 2156 字,大约阅读时间需要 7 分钟。


HTTP server plugin
 

HTTP 服务器插件
 


The rabbitmq-mochiweb plugin provides hosting for other plugins that have HTTP interfaces. It allows these interfaces to co-exist on one or more HTTP listeners.
 

rabbitmq-mochiweb 插件可以为其他拥有 HTTP 接口到插件提供 hosting 功能。允许这些接口并存与一个或者多个 HTTP listener。
 


Configuration
 

配置方式
 


Plugins using rabbit
 
mq-mochiweb typically take a listener configuration item to configure their listening HTTP port. In this page we will give examples for the rabbitmq_management application, but the same configuration can be applied to rabbitmq_jsonrpc and rabbitmq_web_stomp_examples.
 

使用 rabbitmq-mochiweb 的插件,典型配置为通过一个 listener 配置条目配置 HTTP 监听端口。在这里,我们将通过 rabbitmq_management 应用作为示例进行说明,同样的配置可以应用到 rabbitmq_jsonrpc 和 rabbitmq_web_stomp 到例子上。
 


The listener configuration item can contain the following keys:
 

listener 配置条目可以包含以下 key 值:
 

  • port (mandatory)
  • ip (to listen on only one interface)
  • ssl (to enable SSL)
  • ssl_opts (to configure SSL)


Listening on a single interface
 

仅监听单独一个接口
 


Use ip to specify an interface for mochiweb to bind to (giving an IP address as a string or tuple). For example:
 

可以使用 ip 来指定 mochiweb 要绑定的接口(以字符串或者元组的形式给出 IP 地址),例如:
 

1
2
3
4
5
6
[{rabbitmq_management,
  
[{listener, [{port, 15672},
               
{ip,
"127.0.0.1"
}
              
]}
  
]}
].

SSL
 


Set ssl to true to turn on SSL for a listener. Use ssl_opts to specify SSL options. These are the standard Erlang SSL options - see the main page on SSL for more information.
 

设置 ssl 为 true 可以将一个 listener 设置为支持 SSL 。通过 ssl_opts 可以指定 SSL 选项。这些选项均为标准 Erlang SSL 选项 - 详见 SSL 的 man 页。
 


For convenience, if you do not specify ssl_opts then rabbitmq-mochiweb will use the same options as the main RabbitMQ server does for AMQP over SSL, but with client certificate verification turned off. If you wish to use client certificate verification, specify ssl_opts explicitly.
 

在简单使用时,如果你没有设置 ssl_opts,那么 rabbitmq-mochiweb 将使用和 RabbitMQ 服务器针对 AMQP over SSL 同样的选项,但是关闭了客户端证书验证机制。如果你希望使用客户端证书验证机制,可以显式设置 ssl_opts 内容。
 


For example:
 

1
2
3
4
5
6
7
8
9
[{rabbitmq_management,
  
[{listener, [{port,     15672},
               
{ssl,     
true
},
               
{ssl_opts, [{cacertfile,
"/path/to/cacert.pem"
},
                           
{certfile,  
"/path/to/cert.pem"
},
                           
{keyfile,   
"/path/to/key.pem"
}]}
              
]}
  
]}
].

转载地址:http://ltdfa.baihongyu.com/

你可能感兴趣的文章
[TC13761]Mutalisk
查看>>
while()
查看>>
常用限制input的方法
查看>>
IIS7下使用urlrewriter.dll配置
查看>>
并行程序设计学习心得1——并行计算机存储
查看>>
bulk
查看>>
C++ 迭代器运算
查看>>
【支持iOS11】UITableView左滑删除自定义 - 实现多选项并使用自定义图片
查看>>
【算法笔记】多线程斐波那契数列
查看>>
java8函数式编程实例
查看>>
jqgrid滚动条宽度/列显示不全问题
查看>>
在mac OS10.10下安装 cocoapods遇到的一些问题
查看>>
css技巧
查看>>
Tyvj 1728 普通平衡树
查看>>
javascript性能优化
查看>>
多路归并排序之败者树
查看>>
java连接MySql数据库
查看>>
转:Vue keep-alive实践总结
查看>>
深入python的set和dict
查看>>
C++ 11 lambda
查看>>