2015-09-02 59 views
1

如何在使用用戶列表時添加未詢問密碼的haproxy IP地址?Haproxy用戶列表,並允許沒有密碼的IP

userlist user 
     user user insecure-password password 
     allow ip 1.1.1.1 [example] 

類似權威性基本在阿帕奇

AuthType Basic 
AuthUserFile /www/.site_htpasswd 
AuthName "xxx" 
require valid-user 
Allow from 1.2.3.4 

回答

0

您需要使用HAProxy的訪問控制列表:

frontend example-frontend 
    acl ip_whitelist src 1.1.1.1 
    acl auth_ok http_auth(user) 
    # require authentication when not in whitelist and not authenticated 
    http-request auth if !ip_whitelist !auth_ok 
相關問題