- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试使用 Ansible 在服务器上自动设置 certbot + nginx。
第一次运行时,还没有 letsencrypt 证书。但是,我按如下方式创建了 nginx conf,引用了 将 由 certbot 创建的 SSL/cert 目录
server {
listen 443 ssl;
server_name example.co;
# ...
# SSL
ssl_certificate /etc/letsencrypt/live/example.co/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/example.co/privkey.pem;
include /etc/letsencrypt/options-ssl-nginx.conf;
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem;
}
server {
if ($host = example.co) {
return 301 https://$host$request_uri;
}
listen 80;
server_name example.co;
return 404;
}
然后在 ansible play 中,我使用 --nginx
插件运行 certbot-auto
,但我收到错误
> /usr/local/bin/certbot-auto certonly --nginx -n --agree-tos --text -d example.co --email admin@example.co
Error while running nginx -c /etc/nginx/nginx.conf -t.
nginx: [emerg] cannot load certificate "/etc/letsencrypt/live/example.co/fullchain.pem"
似乎 certbot 在继续之前首先检查 nginx conf(这是有道理的)但是 conf 验证失败,因为它引用了不存在的目录。此外,--nginx
插件(或至少一些其他插件)是必需的,所以我不能将其关闭。
所以我处于一种先有鸡还是先有蛋的情况,因为 -
我无法在运行 certbot 之前创建 nginx conf,因为 certbot 尝试验证 nginx conf,但失败了,因为它引用了不存在的目录
我无法在创建 nginx conf 之前运行 certbot,因为 certbot 使用站点的 conf 来要求新证书
我能看到的唯一选择是
#SSL
行#SSL
行这感觉很乱,但不确定是否有其他方法?
运行它的正确顺序是什么?
谢谢!
最佳答案
.conf 文件肯定需要在运行 certbot 之前存在。然后,Certbot 本身会将证书的路径写入文件,因此不需要第 3 步。
关于ssl - 哪个先出现 - 创建 nginx 站点 `.conf` 文件或运行 `certbot-auto certonly`?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58295060/
几个月前,我做了一个功能,我的应用程序正在等待用户文档并做出相应的响应。直到我对项目进行优化并将其更新到最新版本之前,它一直是一种魅力。 如果存在用户文档,则流将产生该文档并关闭该流。 如果云Fire
Stack Overflow 有几个 examples其中函数首先获得可升级锁,然后通过升级获得独占访问。我的理解是,如果不小心使用,这可能会导致死锁,因为两个线程可能都获得了可升级/共享锁,然后都尝
这个问题在这里已经有了答案: MVC 4 Code First ForeignKeyAttribute on property ... on type ... is not valid (1 个回答
以下是部分代码。我需要在 finally 子句中关闭资源。我需要先调用 closeEntry() 还是 close()?我收到一些错误消息。 Error closing the zipoutjava.
我想使用 RxJS-DOM 观察 mousewheel 事件,这样当第一个事件触发时,我转发它然后删除所有值,直到后续值之间的延迟超过先前指定的持续时间。 我想象的运算符可能看起来像: Rx.DOM.
版本似乎与安装的不同。 我在 npm install 上收到警告 我将二进制文件安装到我的家庭/开发目录中,但它不适用于 sudo。所以我安装了apt。 (注意:我并没有真正安装,我提取并将路径放在/
我正在尝试展示 GAN 网络在某些指定时期的结果。打印当前结果的功能以前与 TF 一起使用。我需要换成 pytorch。 def show_result(G_net, z_, num_epoch, s
我是一名优秀的程序员,十分优秀!