问题描述
我想设置让我们使用nginx将证书加密到服务器上,使用Go中写入的lego客户端
我会用nginx config取得证书吗?
您需要在以下位置添加:80和443虚拟服务器:
我想设置让我们使用nginx将证书加密到服务器上,使用Go中写入的lego客户端
我会用nginx config取得证书吗?
#http和https nginx服务器
位置/.well-known/acme-challenge/ {
proxy_set_header Host $ host;
proxy_pass http://127.0.0.1:4000$request_uri;
}
并运行lego二进制文件:
./ lego.amd64 --http 127.0.0.1:4000 --email [email protected] domain.tld --domain some.domain。 tld run
您的证书文件储存在:
#ls -la .lego / certificates /
total 20
drwx ------ 2 root root 4096 Nov 9 08:06。
drwx ------ 4根root 4096 Nov 9 08:06 ..
-rw ------- 1 root root 3477 Nov 9 08:15 domain.tld.crt
-rw ------- 1 root root 226 Nov 9 08:15 domain.tld.json
-rw ------- 1 root root 1679 Nov 9 08:15 domain。 tld.key
如果nginx已经使用了有效的SSL / TLS证书,并且您想添加新的域名您需要排除的证书中的姓名 tls-sni-01
求解器:
./ lego.amd64 --exclude = tls-sni-01 --http 127.0.0.1:4000 --email [email protected] domain.tld --domains new.domain.tld run
I'd like to setup Let's Encrypt certificate to live server with nginx with lego client written in Go https://github.com/xenolf/lego/
What I'll to do with nginx config to get certificate?
You need to add in :80 and :443 virtual servers following location:
# http and https nginx servers
location /.well-known/acme-challenge/ {
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:4000$request_uri;
}
And run lego binary:
./lego.amd64 --http 127.0.0.1:4000 --email="[email protected]" --domains domain.tld --domains some.domain.tld run
Your certificate files stored in:
# ls -la .lego/certificates/
total 20
drwx------ 2 root root 4096 Nov 9 08:06 .
drwx------ 4 root root 4096 Nov 9 08:06 ..
-rw------- 1 root root 3477 Nov 9 08:15 domain.tld.crt
-rw------- 1 root root 226 Nov 9 08:15 domain.tld.json
-rw------- 1 root root 1679 Nov 9 08:15 domain.tld.key
In case nginx already works with valid SSL/TLS certificate and you want to add new domain name in certificate you need to exclude tls-sni-01
solver:
./lego.amd64 --exclude=tls-sni-01 --http 127.0.0.1:4000 --email="[email protected]" --domains domain.tld --domains new.domain.tld run
这篇关于如何使用golang lego让我们加密nginx后面的客户端?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!