├── .github └── workflows │ ├── codeql.yml │ ├── go.yml │ ├── release.yml │ ├── renovate-config-validator-ci.yml │ └── security.yml ├── .gitignore ├── .goreleaser.yml ├── AGENTS.md ├── CLAUDE.md ├── LICENSE ├── Makefile ├── README.md ├── command └── command.go ├── config ├── configure.example ├── modules.json.brotli ├── modules.json.example ├── modules.json.njs └── patches │ ├── nginx-add-file.patch │ └── openssl-add-file.patch ├── configure ├── configure.go ├── configure_test.go ├── configureopt.go ├── generate.go └── normalize.go ├── download.go ├── download_test.go ├── go.mod ├── go.sum ├── images └── nginx-build.gif ├── message.go ├── module3rd ├── download.go ├── load.go ├── load_test.go ├── module3rd.go └── provide.go ├── multistringflag.go ├── nginx-build.go ├── openresty ├── openresty.go └── openresty_test.go ├── option.go ├── option_test.go ├── patch_test.go ├── renovate.json ├── util ├── file.go ├── message.go └── patch.go └── version.go /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/renovate-config-validator-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/.github/workflows/renovate-config-validator-ci.yml -------------------------------------------------------------------------------- /.github/workflows/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/.github/workflows/security.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/README.md -------------------------------------------------------------------------------- /command/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/command/command.go -------------------------------------------------------------------------------- /config/configure.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/config/configure.example -------------------------------------------------------------------------------- /config/modules.json.brotli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/config/modules.json.brotli -------------------------------------------------------------------------------- /config/modules.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/config/modules.json.example -------------------------------------------------------------------------------- /config/modules.json.njs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/config/modules.json.njs -------------------------------------------------------------------------------- /config/patches/nginx-add-file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/config/patches/nginx-add-file.patch -------------------------------------------------------------------------------- /config/patches/openssl-add-file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/config/patches/openssl-add-file.patch -------------------------------------------------------------------------------- /configure/configure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/configure/configure.go -------------------------------------------------------------------------------- /configure/configure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/configure/configure_test.go -------------------------------------------------------------------------------- /configure/configureopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/configure/configureopt.go -------------------------------------------------------------------------------- /configure/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/configure/generate.go -------------------------------------------------------------------------------- /configure/normalize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/configure/normalize.go -------------------------------------------------------------------------------- /download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/download.go -------------------------------------------------------------------------------- /download_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/download_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/cubicdaiya/nginx-build 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/nginx-build.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/images/nginx-build.gif -------------------------------------------------------------------------------- /message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/message.go -------------------------------------------------------------------------------- /module3rd/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/module3rd/download.go -------------------------------------------------------------------------------- /module3rd/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/module3rd/load.go -------------------------------------------------------------------------------- /module3rd/load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/module3rd/load_test.go -------------------------------------------------------------------------------- /module3rd/module3rd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/module3rd/module3rd.go -------------------------------------------------------------------------------- /module3rd/provide.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/module3rd/provide.go -------------------------------------------------------------------------------- /multistringflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/multistringflag.go -------------------------------------------------------------------------------- /nginx-build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/nginx-build.go -------------------------------------------------------------------------------- /openresty/openresty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/openresty/openresty.go -------------------------------------------------------------------------------- /openresty/openresty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/openresty/openresty_test.go -------------------------------------------------------------------------------- /option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/option.go -------------------------------------------------------------------------------- /option_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/option_test.go -------------------------------------------------------------------------------- /patch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/patch_test.go -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/renovate.json -------------------------------------------------------------------------------- /util/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/util/file.go -------------------------------------------------------------------------------- /util/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/util/message.go -------------------------------------------------------------------------------- /util/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/util/patch.go -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubicdaiya/nginx-build/HEAD/version.go --------------------------------------------------------------------------------