]> source.dussan.org Git - gitea.git/commitdiff
Fix documents for ALLOWED_HOST_LIST, its default value differs between 1.15 and 1...
authorwxiaoguang <wxiaoguang@gmail.com>
Mon, 8 Nov 2021 03:25:41 +0000 (11:25 +0800)
committerGitHub <noreply@github.com>
Mon, 8 Nov 2021 03:25:41 +0000 (11:25 +0800)
* fix documents for ALLOWED_HOST_LIST, its default value differs between 1.15 and 1.16

custom/conf/app.example.ini
docs/content/doc/advanced/config-cheat-sheet.en-us.md

index eadc1c0d96256d6b409bbcbf60d9e6f0fca23fbe..9643e396b698445345cd7bd312e209d7a14654ab 100644 (file)
@@ -1400,6 +1400,7 @@ PATH =
 ;; Built-in: loopback (for localhost), private (for LAN/intranet), external (for public hosts on internet), * (for all hosts)
 ;; CIDR list: 1.2.3.0/8, 2001:db8::/32
 ;; Wildcard hosts: *.mydomain.com, 192.168.100.*
+;; Since 1.15.7. Default to * for 1.15.x, external for 1.16 and later
 ;ALLOWED_HOST_LIST = external
 ;;
 ;; Allow insecure certification
index 6cc6043cae7d0dd6ddacfe1121455db16fa5c5d9..3b5d9213df6254bd4b57c377d2240922548c5d2d 100644 (file)
@@ -581,7 +581,7 @@ Define allowed algorithms and their minimum key length (use -1 to disable a type
 
 - `QUEUE_LENGTH`: **1000**: Hook task queue length. Use caution when editing this value.
 - `DELIVER_TIMEOUT`: **5**: Delivery timeout (sec) for shooting webhooks.
-- `ALLOWED_HOST_LIST`: **external**: Webhook can only call allowed hosts for security reasons. Comma separated list.
+- `ALLOWED_HOST_LIST`: **external**: Since 1.15.7. Default to `*` for 1.15.x, `external` for 1.16 and later. Webhook can only call allowed hosts for security reasons. Comma separated list.
   - Built-in networks:
     - `loopback`: 127.0.0.0/8 for IPv4 and ::1/128 for IPv6, localhost is included.
     - `private`: RFC 1918 (10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16) and RFC 4193 (FC00::/7). Also called LAN/Intranet.