Firstsawyou commented on a change in pull request #1901:
URL: https://github.com/apache/apisix-dashboard/pull/1901#discussion_r634262954



##########
File path: docs/en/latest/FAQ.md
##########
@@ -70,3 +70,38 @@ $ swagger generate spec -o ./docs/en/latest/api/api.yaml 
--scan-models
 ```shell
 $ swagger-markdown -i ./docs/en/latest/api/api.yaml
 ```
+
+### 6. How to allow all IPs to access APISIX Dashboard
+
+1. Allow all IPv4 access
+
+By default, the IPv4 range of `127.0.0.0/24` is allowed to access `APISIX 
Dashboard`. If you want to allow all IPv4 access, then just configure 
`conf.allow_list` in the configuration file of `conf/conf.yaml` as follows:
+
+```yaml
+conf:
+  allow_list:
+    - 0.0.0.0/0
+```
+
+2. Allow all IPv6 access
+
+By default, the IPv6 range of `::1` is allowed to access `APISIX Dashboard`. 
If you want to allow all IPv6 access, then just configure `conf.allow_list` in 
the configuration file of `conf/conf.yaml` as follows:
+
+```yaml
+conf:
+  allow_list:
+    - ::/0
+```
+
+3. Allow all IP access
+
+If you want to allow all IPs to access `APISIX Dashboard`, you only need to do 
the following configuration in the configuration file of `conf/conf.yaml`:
+
+```yaml
+conf:
+  allow_list:
+```
+
+Restart `manager-api`, all IPs can access `APISIX Dashboard`.
+
+Note: You can use this method in the exercise to allow all IPs to access your 
`APISIX Dashboard` instance, but it is not safe to use it in a production 
environment. In production, please only authorize specific IP addresses or 
address ranges to access your instance.

Review comment:
       Updated.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to