On 3/28/13 6:45 AM, Wolfgang Routschka wrote:
Hello everybody,
today a question about htaccess in haproxy config directly
Is it possible to configure a htaccess protect in haproxy config similar apache htpasswd file
Greetings
htaccess can do a lot of things, so I'm assuming you're just wanting to do HTTP basic authentication.


userlist httpusers
  user username insecure-password password

frontend restricted_cluster
  acl auth_acl http_auth(httpusers)
  http-request auth realm basicauth unless auth_acl

Reply via email to