差異處

這裏顯示兩個版本的差異處。

連向這個比對檢視

a10:slb:aflex:http:fqdn-protect [2014/04/24 16:54] – 建立 jala10:slb:aflex:http:fqdn-protect [2014/04/24 16:55] (目前版本) – 移除 jal
行 1: 行 1:
-====== HTTP Protocol Validation ====== 
-  * Only accept right FDQN request, otherwise deny or redirect it to portect your real server. 
-  * Useful to clean HTTP (port 80) robot scan. 
-  * Deny not acceptable HTTP method 
-  * Deny incorrect HTTP version 
- 
-===== Requirement ===== 
-  * Service Type: HTTP / HTTPS 
- 
-===== Code ===== 
-<code tcl> 
-when HTTP_REQUEST { 
-  # Check method first. 
-  if { [HTTP::method] eq "GET" || [HTTP::method] == "POST" } { 
-    # do nothing 
-  } else { 
-    HTTP::redirect "https://www.google.com" 
-  } 
- 
-  # Check HTTP version. 
-  if { [HTTP::version] eq "1.0" || [HTTP::version] == "1.1" } { 
-    # do nothing 
-  } else { 
-    HTTP::redirect "https://www.google.com" 
-  }   
- 
-  # Check FQDN. 
-  if { [string tolower [HTTP::host]] contains "www.jal.tw"} { 
-    # use specify service group 
-    pool www_service_group 
-  } elseif { [string tolower [HTTP::host]] ends_with "jal.tw"} { 
-    # do nothing use default service group. 
-  } else { 
-    HTTP::redirect "https://www.google.com" 
-  } 
-} 
-</code> 
  
a10/slb/aflex/http/fqdn-protect.1398358486.txt.gz · 上一次變更: 2014/04/24 16:54 由 jal
上一頁 | 下一頁 | 回首頁 | RSS Feed | Facebook