gpt4 book ai didi

ssl - 如何使用 Redbird 反向代理配置安全 (HTTPS) 域

转载 作者:太空宇宙 更新时间:2023-11-03 12:59:00 30 4
gpt4 key购买 nike

我想知道如何使用 Redbird 代理正确配置安全域。基础info有点困惑,因为例子有点零散。我想 letsencrypt 应该可以自动(如那里所声称的那样)。

我试过:

   var proxy = require('redbird')({
port:80,
ssl: {
port: 3000,
letsencrypt: {
path: '../SSL-certs',
}
}
});
proxy.register('secure-web.net', 'http://xx.xx.xxx.xxx:8080',{
ssl: {
letsencrypt: {
email: 'my@mail.com'
}
}
});
proxy.register('insecure-web.net', 'http://xx.xxx.xx.xxx:6881');

终端抛出(当我尝试访问页面时):

{"name":"redbird","hostname":"honza-kvm","pid":3089,"level":50,"err":{"message":"140009434470272:error:1408A0C1:SSL routines:ssl3_get_client_hello:no shared cipher:../deps/openssl/openssl/ssl/s3_srvr.c:1418:\n","name":"Error","stack":"Error: 140009434470272:error:1408A0C1:SSL routines:ssl3_get_client_hello:no shared cipher:../deps/openssl/openssl/ssl/s3_srvr.c:1418:\n"},"msg":"HTTPS Client  Error","time":"2016-11-08T13:03:37.979Z","v":0}

Firefox 抛出:

错误代码:SSL_ERROR_NO_CYPHER_OVERLAP

目录 SSL-certs 是有意为空的(它似乎应该根据手册页)但也许我需要一些关于通过 Redbird 使用 letsencrypt 的重要信息。

最佳答案

此示例为我现有的 localhost:8080 启用了 http 和 https。

var proxy = require('redbird')({
port: 80
xfwd: false,
letsencrypt: {
path: "certs",
port: 3000
},
ssl: {
port: 443
}
});

proxy.register("www.example.com", "http://localhost:8080", {
ssl: {
letsencrypt: {
email: "me@example.com",
production: false
}
}
});

另外,当从production:false切换到production:true时,我发现证书颁发者仍然是

Fake LE Intermediate X1

我完全删除了certs目录的内容,重启proxy才找到

Let's Encrypt Authority X3

关于ssl - 如何使用 Redbird 反向代理配置安全 (HTTPS) 域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40487875/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com