letsproxy
letsproxy copied to clipboard
nginx reverse auto proxy with free ssl certs by acme.sh
I run up the letsproxy instance using the following command. > docker run \ -it \ -v /var/run/docker.sock:/tmp/docker.sock:ro \ -v $(pwd)/proxy/certs:/etc/nginx/certs \ -v $(pwd)/proxy/acme:/acmecerts \ -v $(pwd)/proxy/conf.d:/etc/nginx/conf.d \ -v $(pwd)/proxy/vhost.d:/etc/nginx/vhost.d...
Using the latest version of this image, it appears there are issues with OCSP stapling. Using this proxy, the following error message is shown on Firefox: `Error code: MOZILLA_PKIX_ERROR_REQUIRED_TLS_FEATURE_MISSING` The...
# 2022-04-01 letsencrypt自动阿里云DNS反向代理问题的处理步骤 ## 一、问题描述与思路 今日发现自己的小破站提示证书到期访问不了了,遂检查Neilpang/letsproxy的运行情况,发现不知何故证书没更新成功,尝试容器重启无果,删除配置重新生成,此时又报验证域名归属失败 再经过多种尝试无果后只能将手伸进容器里面动[acme.sh](https://github.com/acmesh-official/acme.sh)的更新脚本[updatessl.sh](https://github.com/Neilpang/letsproxy/blob/master/updatessl.sh)了,原内容 ``` #!/usr/bin/env sh _SCRIPT_="$0" ACME_BIN="/acme.sh/acme.sh --home /acme.sh --config-home /acmecerts" DEFAULT_CONF="/etc/nginx/conf.d/default.conf" CERTS="/etc/nginx/certs" updatessl() { nginx -t && nginx -s reload if grep ACME_DOMAINS $DEFAULT_CONF...
I noticed the updatessl script didn't have any option to use DNS hooks from the acme.sh script and I needed this for my internal websites. Let me know of any...