Browse Source

Re-add allow list

2xB 2 years ago
parent
commit
5247e87f21
1 changed files with 6 additions and 6 deletions
  1. 6 6
      docker/custom-httpd.conf

+ 6 - 6
docker/custom-httpd.conf

@@ -293,18 +293,18 @@ DocumentRoot "/usr/local/apache2/htdocs"
     
     
     #Order Deny,Allow
-    #Deny from all
+    Deny from all
     
     # TLK
-    #Allow from 141.52.13.0/24
+    Allow from 141.52.13.0/24
     
     # IKP
-    #Allow from 141.52.24.0/24
+    Allow from 141.52.24.0/24
     
     # IPE
-    #Allow from 141.52.64.0/24
+    Allow from 141.52.64.0/24
     
-    #Allow from 127.0.0.0/8
+    Allow from 127.0.0.0/8
     
     # Podman network for testing
     #Allow from 10.0.2.100/1
@@ -313,7 +313,7 @@ DocumentRoot "/usr/local/apache2/htdocs"
     AuthType Basic
     AuthUserFile /usr/local/apache2/config/htpasswd
     require valid-user
-    #Satisfy Any
+    Satisfy Any
 
 </Directory>