mirror of
https://github.com/tufanbarisyildirim/gonginx.git
synced 2026-04-26 16:25:50 +03:00
Nginx configuration parser helps you to parse, edit, regenerate your nginx config in your go applications
|
|
||
|---|---|---|
| .github/workflows | ||
| config | ||
| dumper | ||
| examples | ||
| full-example | ||
| parser | ||
| testdata | ||
| todo | ||
| .gitignore | ||
| AGENTS.md | ||
| CODE_OF_CONDUCT.md | ||
| CONTRIBUTING.md | ||
| go.mod | ||
| go.sum | ||
| gopher.png | ||
| GUIDE.md | ||
| LICENSE | ||
| Makefile | ||
| README.md | ||

Gonginx
TBH, I would like to rewrite the parser next time I need it again :)) but it still does its job.
Gonginx is an Nginx configuration parser helps you to parse, edit, regenerate your nginx config files in your go applications. It makes managing your balancer configurations easier.
Basic grammar of an nginx config file
%token Keyword Variable BlockStart BlockEnd Semicolon Regex
%%
config : /* empty */
| config directives
;
block : BlockStart directives BlockEnd
;
directives : directives directive
;
directive : Keyword [parameters] (semicolon|block)
;
parameters : parameters keyword
;
keyword : Keyword
| Variable
| Regex
;
API
Core Components
-
Parser
Parser is the main package that analyzes and turns nginx structred files into objects. It basically has 3 libraries,lexerexplodes it intotokens andparserturns tokens into config objects which are in their own package, -
Config
Config package is representation of any context, directive or their parameters in golang. So basically they are models and also AST -
Dumper
Dumper is the package that holds styling configuration only.
Examples
- Formatting
- Adding a Server to upstream block
- add-custom-directive
- dump-nginx-config
- update-directive
- update-server-listen-port
Examples and Library Reference
TODO
- associate comments with config objects to print them on config generation and make it configurable with
dumper.Style - move any context wrapper into their own file (remove from parser)
- Parse included files recusively, keep relative path on load, save all in a related structure and make that optional in dumper.Style
- Implement specific searches, like finding servers by server_name (domain) or any upstream by target etc.
- add more examples
- link the parent directive to any directive for easier manipulation
Limitations
There is no known limitations yet. PRs are more than welcome if you want to implement a specific directive / block, please read Contributing before your first PR.
Behavior Notes
- Parser APIs return errors for malformed input; malformed configs should not crash your process.
- Include parsing (
parser.WithIncludeParsing()) deduplicates includes by canonical path and skips cyclic include branches by default. - Use
parser.WithIncludeCycleErr()to fail fast on include-cycle detection. dumper.NoIndentSortedStyle/ sorted dump options no longer mutate directive order in the in-memory AST.- Parent semantics:
- root-level leaf directives have
nilparent, - nested directives point to their enclosing directive wrapper (
http,server,location, etc.).
- root-level leaf directives have
- Upstream lookup:
FindUpstreams()is permissive and skips unexpected upstream directive types.FindUpstreamsStrict()returns a typed error when a matchedupstreamis not*config.Upstream.
- Lua comment style policy:
- existing
--comments stay--, - nginx-style
#comments are preserved where originally used and safe, - formatter failures fall back to original Lua code.
- existing