瀏覽代碼

apache2 letsencrypt reverse proxy

tags/v2.0.0
Robin Thoni 9 年之前
父節點
當前提交
2e600a1ebb
共有 1 個檔案被更改,包括 10 行新增0 行删除
  1. 10
    0
      apache/letsencrypt

+ 10
- 0
apache/letsencrypt 查看文件

@@ -0,0 +1,10 @@
1
+<IfModule mod_proxy.c>
2
+<Location "/.well-known/acme-challenge/">
3
+    ProxyPass "http://127.0.0.1:9999/.well-known/acme-challenge/" retry=1
4
+    ProxyPassReverse "http://127.0.0.1:9999/.well-known/acme-challenge/"
5
+    ProxyPreserveHost On
6
+    Order allow,deny
7
+    Allow from all
8
+    Require all granted
9
+  </Location>
10
+</IfModule>

Loading…
取消
儲存