Commit 2dfbbd38 authored by gejun's avatar gejun

Remove descriptions related to COMAKE

parent 7e2e25df
......@@ -295,13 +295,7 @@ if (encoding != NULL && *encoding == "gzip") {
# 开启HTTPS
要开启HTTPS,首先确保代码依赖了最新的openssl库
```python
CONFIGS('third-64/openssl@1.0.2.6123')
```
因为大部分机器自带的openssl版本很旧,有严重的安全漏洞,支持的加密算法也少,违背了开启SSL的初衷
然后在设置ServerOptions中的SSLOptions
要开启HTTPS,首先确保代码依赖了最新的openssl库。如果openssl版本很旧,会有严重的安全漏洞,支持的加密算法也少,违背了开启SSL的初衷。然后设置ServerOptions中的SSLOptions
```c++
// 证书结构
struct CertInfo {
......
......@@ -149,7 +149,7 @@ server端由public/ubrpc搭建,request/response使用idl文件描述字段,
**步骤:**
1. 依赖public/baidu-rpc-ub模块,COMAKE中增加依赖:`CONFIGS('public/baidu-rpc-ub@ci-base')。`这个模块是brpc的扩展,不需要的用户不会依赖idl/mcpack/compack等模块。baidu-rpc-ub只包含扩展代码,brpc中的新特性会自动体现在这个模块中。
1. 依赖public/baidu-rpc-ub模块,这个模块是brpc的扩展,不需要的用户不会依赖idl/mcpack/compack等模块。baidu-rpc-ub只包含扩展代码,brpc中的新特性会自动体现在这个模块中。
2. 编写一个proto文件,其中定义了service,名字和idl中的相同,但请求类型必须是baidu.rpc.UBRequest,回复类型必须是baidu.rpc.UBResponse。这两个类型定义在brpc/ub.proto中,使用时得import
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment