├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── dist ├── index.d.ts ├── index.js ├── index.js.map └── src │ ├── conf.d.ts │ ├── conf.js │ ├── conf.js.map │ ├── parser.d.ts │ ├── parser.js │ └── parser.js.map ├── index.ts ├── package.json ├── src ├── conf.ts └── parser.ts ├── tests ├── conf-tests.js ├── files │ ├── expected.conf │ └── nginx-home.conf ├── filesystem-tests.js ├── parser-tests.js ├── typescript-tests.js └── typescript │ └── readme.ts └── tsconfig.json /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | *.tsbuildinfo 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/src/conf.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/dist/src/conf.d.ts -------------------------------------------------------------------------------- /dist/src/conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/dist/src/conf.js -------------------------------------------------------------------------------- /dist/src/conf.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/dist/src/conf.js.map -------------------------------------------------------------------------------- /dist/src/parser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/dist/src/parser.d.ts -------------------------------------------------------------------------------- /dist/src/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/dist/src/parser.js -------------------------------------------------------------------------------- /dist/src/parser.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/dist/src/parser.js.map -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/package.json -------------------------------------------------------------------------------- /src/conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/src/conf.ts -------------------------------------------------------------------------------- /src/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/src/parser.ts -------------------------------------------------------------------------------- /tests/conf-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/tests/conf-tests.js -------------------------------------------------------------------------------- /tests/files/expected.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/tests/files/expected.conf -------------------------------------------------------------------------------- /tests/files/nginx-home.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/tests/files/nginx-home.conf -------------------------------------------------------------------------------- /tests/filesystem-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/tests/filesystem-tests.js -------------------------------------------------------------------------------- /tests/parser-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/tests/parser-tests.js -------------------------------------------------------------------------------- /tests/typescript-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/tests/typescript-tests.js -------------------------------------------------------------------------------- /tests/typescript/readme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/tests/typescript/readme.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmont/nginx-conf/HEAD/tsconfig.json --------------------------------------------------------------------------------