config-parser icon indicating copy to clipboard operation
config-parser copied to clipboard

HAProxy configuration parser

Results 7 config-parser issues
Sort by recently updated
recently updated
newest added

**Assuming** ```go import ( parser "github.com/haproxytech/config-parser/v5" ) ... p := parser.New(content, options) ``` **Proposal** It would be a useful feature, to be able to list all the set attributes in...

enhancement

**Assuming** ```go import ( parser "github.com/haproxytech/config-parser/v5" ) ... p := parser.New(content, options) ``` _Currently it's possible to obtain the parsed models for all supported attributes like_ ```go log, err :=...

enhancement

acl jh env(HAPROXY_LOCALPEER) -m beg jh acl tz env(HAPROXY_LOCALPEER) -m beg tz force-persist if jh || tz force-persist not support || ? https://github.com/haproxytech/config-parser/blob/b7f6fa2190e182a41d473913d2159be120ccbe78/parsers/force-persist.go#L31

First of all thank you for your great work folks. :hugs: So I've created `haproxy.org/backend-config-snippet` and I added a acl line with comment like ``` acl is_whitelisted src 1.2.3.4 #...

hello, very thanks for this project, I am a chinese user. I don't find the [force-persist](http://cbonte.github.io/haproxy-dconv/2.5/configuration.html#4-force-persist) parser and [option allbackups](http://cbonte.github.io/haproxy-dconv/2.5/configuration.html#4.2-option%20allbackups) in config-parser/v4/parsers/. I write a [force-persist_generated.go ](https://github.com/DeyunLuo/config-parser/blob/master/parsers/force_persist.go) can you support...