├── .github └── workflows │ ├── ci.yml │ └── contrib-check.yml ├── .hgtags ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── alpine ├── .gitignore ├── Makefile ├── Makefile.module-acme ├── Makefile.module-auth-spnego ├── Makefile.module-brotli ├── Makefile.module-encrypted-session ├── Makefile.module-fips-check ├── Makefile.module-geoip ├── Makefile.module-geoip2 ├── Makefile.module-headers-more ├── Makefile.module-image-filter ├── Makefile.module-lua ├── Makefile.module-ndk ├── Makefile.module-njs ├── Makefile.module-otel ├── Makefile.module-passenger ├── Makefile.module-perl ├── Makefile.module-rtmp ├── Makefile.module-set-misc ├── Makefile.module-subs-filter ├── Makefile.module-xslt ├── alpine-plus │ └── APKBUILD-plus-module.in └── alpine │ ├── APKBUILD-base.in │ ├── APKBUILD-module.in │ ├── nginx-module.post-install.in │ ├── nginx.conf │ ├── nginx.default.conf │ ├── nginx.initd.in │ ├── nginx.logrotate │ ├── nginx.post-install │ ├── nginx.post-upgrade │ ├── nginx.pre-deinstall │ └── nginx.pre-install ├── contrib ├── .gitignore ├── Makefile ├── attestation.mak ├── src │ ├── abseil-cpp │ │ ├── 4500c2fada4e952037c59bd65e8be1ba0b29f21e.patch │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ ├── b957f0ccd00481cd4fd663d8320aa02ae0564f18.patch │ │ └── version │ ├── encrypted-session-nginx-module │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ └── version │ ├── grpc │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ ├── grpc-cmake-no-re2.patch │ │ └── version │ ├── headers-more-nginx-module │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ └── version │ ├── lua-nginx-module │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ ├── config.patch │ │ └── version │ ├── lua-resty-core │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ └── version │ ├── lua-resty-lrucache │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ └── version │ ├── luajit2 │ │ ├── Makefile │ │ ├── Makefile.patch │ │ ├── SHA512SUMS │ │ ├── src-luaconf.h.patch │ │ └── version │ ├── nginx-acme │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ └── version │ ├── nginx-fips-check-module │ │ ├── 0001-Added-support-for-OpenSSL-3.0.patch │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ └── version │ ├── nginx-otel │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ └── version │ ├── nginx-rtmp-module │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ └── version │ ├── nginx-tests │ │ └── Makefile │ ├── nginx │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ └── version │ ├── ngx_brotli │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ └── version │ ├── ngx_devel_kit │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ └── version │ ├── ngx_http_geoip2_module │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ └── version │ ├── ngx_http_substitutions_filter_module │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ └── version │ ├── njs │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ └── version │ ├── opentelemetry-cpp │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ └── version │ ├── opentelemetry-proto │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ └── version │ ├── passenger │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ ├── build-nginx.rb.patch │ │ ├── src-nginx_module-ContentHandler.c.patch │ │ └── version │ ├── protobuf │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ └── version │ ├── quickjs │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ ├── quickjs.makefile.patch │ │ └── version │ ├── set-misc-nginx-module │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ └── version │ ├── spnego-http-auth-nginx-module │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ └── version │ ├── stream-lua-nginx-module │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ ├── config.patch │ │ ├── proxy-ssl-verifyby.patch │ │ └── version │ └── xslscript │ │ ├── Makefile │ │ ├── SHA512SUMS │ │ └── version └── tarballs │ └── .gitignore ├── debian ├── .gitignore ├── Makefile ├── Makefile.module-acme ├── Makefile.module-auth-spnego ├── Makefile.module-brotli ├── Makefile.module-encrypted-session ├── Makefile.module-fips-check ├── Makefile.module-geoip ├── Makefile.module-geoip2 ├── Makefile.module-headers-more ├── Makefile.module-image-filter ├── Makefile.module-lua ├── Makefile.module-ndk ├── Makefile.module-njs ├── Makefile.module-otel ├── Makefile.module-passenger ├── Makefile.module-perl ├── Makefile.module-rtmp ├── Makefile.module-set-misc ├── Makefile.module-subs-filter ├── Makefile.module-xslt ├── debian-plus │ └── nginx-plus-module.control.in └── debian │ ├── compat │ ├── extra │ └── .hgkeep │ ├── nginx-debug.default │ ├── nginx-debug.service │ ├── nginx-module.control.in │ ├── nginx-module.postinst.in │ ├── nginx-module.rules.in │ ├── nginx.conf │ ├── nginx.control.in │ ├── nginx.default │ ├── nginx.default.conf │ ├── nginx.dirs │ ├── nginx.docs │ ├── nginx.init.in │ ├── nginx.install │ ├── nginx.lintian-overrides │ ├── nginx.logrotate │ ├── nginx.manpages │ ├── nginx.postinst │ ├── nginx.postrm │ ├── nginx.preinst │ ├── nginx.prerm │ ├── nginx.rules.in │ ├── nginx.service │ └── source │ ├── format │ └── lintian-overrides ├── docs ├── Makefile ├── change_log_conf.dtd ├── change_log_conf.xml ├── changes.dtd ├── changes.xsls ├── changes.xslt ├── nginx-module-acme.copyright ├── nginx-module-acme.xml ├── nginx-module-auth-spnego.copyright ├── nginx-module-auth-spnego.xml ├── nginx-module-brotli.copyright ├── nginx-module-brotli.xml ├── nginx-module-encrypted-session.copyright ├── nginx-module-encrypted-session.xml ├── nginx-module-fips-check.copyright ├── nginx-module-fips-check.xml ├── nginx-module-geoip.copyright ├── nginx-module-geoip.xml ├── nginx-module-geoip2.copyright ├── nginx-module-geoip2.xml ├── nginx-module-headers-more.copyright ├── nginx-module-headers-more.xml ├── nginx-module-image-filter.copyright ├── nginx-module-image-filter.xml ├── nginx-module-lua.copyright ├── nginx-module-lua.xml ├── nginx-module-ndk.copyright ├── nginx-module-ndk.xml ├── nginx-module-njs.copyright ├── nginx-module-njs.xml ├── nginx-module-otel.copyright ├── nginx-module-otel.xml ├── nginx-module-passenger.copyright ├── nginx-module-passenger.xml ├── nginx-module-perl.copyright ├── nginx-module-perl.xml ├── nginx-module-rtmp.copyright ├── nginx-module-rtmp.xml ├── nginx-module-set-misc.copyright ├── nginx-module-set-misc.xml ├── nginx-module-subs-filter.copyright ├── nginx-module-subs-filter.xml ├── nginx-module-xslt.copyright ├── nginx-module-xslt.xml ├── nginx.copyright └── nginx.xml └── rpm ├── .gitignore ├── SOURCES ├── RPM-GPG-KEY-nginx ├── logrotate ├── nginx-debug.service ├── nginx.check-reload.sh ├── nginx.conf ├── nginx.default.conf ├── nginx.repo ├── nginx.service ├── nginx.suse.logrotate └── nginx.upgrade.sh └── SPECS ├── Makefile ├── Makefile.module-acme ├── Makefile.module-auth-spnego ├── Makefile.module-brotli ├── Makefile.module-encrypted-session ├── Makefile.module-fips-check ├── Makefile.module-geoip ├── Makefile.module-geoip2 ├── Makefile.module-headers-more ├── Makefile.module-image-filter ├── Makefile.module-lua ├── Makefile.module-ndk ├── Makefile.module-njs ├── Makefile.module-otel ├── Makefile.module-passenger ├── Makefile.module-perl ├── Makefile.module-rtmp ├── Makefile.module-set-misc ├── Makefile.module-subs-filter ├── Makefile.module-xslt ├── nginx-module.spec.in ├── nginx-plus-module.spec.in ├── nginx-release-centos.spec ├── nginx-release-rhel.spec └── nginx.spec.in /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/contrib-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/.github/workflows/contrib-check.yml -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/.hgtags -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /alpine/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/.gitignore -------------------------------------------------------------------------------- /alpine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/Makefile -------------------------------------------------------------------------------- /alpine/Makefile.module-acme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/Makefile.module-acme -------------------------------------------------------------------------------- /alpine/Makefile.module-auth-spnego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/Makefile.module-auth-spnego -------------------------------------------------------------------------------- /alpine/Makefile.module-brotli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/Makefile.module-brotli -------------------------------------------------------------------------------- /alpine/Makefile.module-encrypted-session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/Makefile.module-encrypted-session -------------------------------------------------------------------------------- /alpine/Makefile.module-fips-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/Makefile.module-fips-check -------------------------------------------------------------------------------- /alpine/Makefile.module-geoip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/Makefile.module-geoip -------------------------------------------------------------------------------- /alpine/Makefile.module-geoip2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/Makefile.module-geoip2 -------------------------------------------------------------------------------- /alpine/Makefile.module-headers-more: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/Makefile.module-headers-more -------------------------------------------------------------------------------- /alpine/Makefile.module-image-filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/Makefile.module-image-filter -------------------------------------------------------------------------------- /alpine/Makefile.module-lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/Makefile.module-lua -------------------------------------------------------------------------------- /alpine/Makefile.module-ndk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/Makefile.module-ndk -------------------------------------------------------------------------------- /alpine/Makefile.module-njs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/Makefile.module-njs -------------------------------------------------------------------------------- /alpine/Makefile.module-otel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/Makefile.module-otel -------------------------------------------------------------------------------- /alpine/Makefile.module-passenger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/Makefile.module-passenger -------------------------------------------------------------------------------- /alpine/Makefile.module-perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/Makefile.module-perl -------------------------------------------------------------------------------- /alpine/Makefile.module-rtmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/Makefile.module-rtmp -------------------------------------------------------------------------------- /alpine/Makefile.module-set-misc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/Makefile.module-set-misc -------------------------------------------------------------------------------- /alpine/Makefile.module-subs-filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/Makefile.module-subs-filter -------------------------------------------------------------------------------- /alpine/Makefile.module-xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/Makefile.module-xslt -------------------------------------------------------------------------------- /alpine/alpine-plus/APKBUILD-plus-module.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/alpine-plus/APKBUILD-plus-module.in -------------------------------------------------------------------------------- /alpine/alpine/APKBUILD-base.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/alpine/APKBUILD-base.in -------------------------------------------------------------------------------- /alpine/alpine/APKBUILD-module.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/alpine/APKBUILD-module.in -------------------------------------------------------------------------------- /alpine/alpine/nginx-module.post-install.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | %%MODULE_POST%% 4 | 5 | exit 0 6 | -------------------------------------------------------------------------------- /alpine/alpine/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/alpine/nginx.conf -------------------------------------------------------------------------------- /alpine/alpine/nginx.default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/alpine/nginx.default.conf -------------------------------------------------------------------------------- /alpine/alpine/nginx.initd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/alpine/nginx.initd.in -------------------------------------------------------------------------------- /alpine/alpine/nginx.logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/alpine/nginx.logrotate -------------------------------------------------------------------------------- /alpine/alpine/nginx.post-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/alpine/nginx.post-install -------------------------------------------------------------------------------- /alpine/alpine/nginx.post-upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/alpine/nginx.post-upgrade -------------------------------------------------------------------------------- /alpine/alpine/nginx.pre-deinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/alpine/nginx.pre-deinstall -------------------------------------------------------------------------------- /alpine/alpine/nginx.pre-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/alpine/alpine/nginx.pre-install -------------------------------------------------------------------------------- /contrib/.gitignore: -------------------------------------------------------------------------------- 1 | .sum-* 2 | .* 3 | -------------------------------------------------------------------------------- /contrib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/Makefile -------------------------------------------------------------------------------- /contrib/attestation.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/attestation.mak -------------------------------------------------------------------------------- /contrib/src/abseil-cpp/4500c2fada4e952037c59bd65e8be1ba0b29f21e.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/abseil-cpp/4500c2fada4e952037c59bd65e8be1ba0b29f21e.patch -------------------------------------------------------------------------------- /contrib/src/abseil-cpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/abseil-cpp/Makefile -------------------------------------------------------------------------------- /contrib/src/abseil-cpp/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/abseil-cpp/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/abseil-cpp/b957f0ccd00481cd4fd663d8320aa02ae0564f18.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/abseil-cpp/b957f0ccd00481cd4fd663d8320aa02ae0564f18.patch -------------------------------------------------------------------------------- /contrib/src/abseil-cpp/version: -------------------------------------------------------------------------------- 1 | ABSEIL_CPP_VERSION := 20211102.0 2 | -------------------------------------------------------------------------------- /contrib/src/encrypted-session-nginx-module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/encrypted-session-nginx-module/Makefile -------------------------------------------------------------------------------- /contrib/src/encrypted-session-nginx-module/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/encrypted-session-nginx-module/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/encrypted-session-nginx-module/version: -------------------------------------------------------------------------------- 1 | ENCRYPTED_SESSION_NGINX_MODULE_VERSION := 0.09 2 | -------------------------------------------------------------------------------- /contrib/src/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/grpc/Makefile -------------------------------------------------------------------------------- /contrib/src/grpc/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/grpc/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/grpc/grpc-cmake-no-re2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/grpc/grpc-cmake-no-re2.patch -------------------------------------------------------------------------------- /contrib/src/grpc/version: -------------------------------------------------------------------------------- 1 | GRPC_VERSION := 1.46.7 2 | -------------------------------------------------------------------------------- /contrib/src/headers-more-nginx-module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/headers-more-nginx-module/Makefile -------------------------------------------------------------------------------- /contrib/src/headers-more-nginx-module/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/headers-more-nginx-module/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/headers-more-nginx-module/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/headers-more-nginx-module/version -------------------------------------------------------------------------------- /contrib/src/lua-nginx-module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/lua-nginx-module/Makefile -------------------------------------------------------------------------------- /contrib/src/lua-nginx-module/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/lua-nginx-module/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/lua-nginx-module/config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/lua-nginx-module/config.patch -------------------------------------------------------------------------------- /contrib/src/lua-nginx-module/version: -------------------------------------------------------------------------------- 1 | LUA_NGINX_MODULE_VERSION := 0.10.29 2 | -------------------------------------------------------------------------------- /contrib/src/lua-resty-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/lua-resty-core/Makefile -------------------------------------------------------------------------------- /contrib/src/lua-resty-core/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/lua-resty-core/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/lua-resty-core/version: -------------------------------------------------------------------------------- 1 | LUA_RESTY_CORE_VERSION := 0.1.32 2 | -------------------------------------------------------------------------------- /contrib/src/lua-resty-lrucache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/lua-resty-lrucache/Makefile -------------------------------------------------------------------------------- /contrib/src/lua-resty-lrucache/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/lua-resty-lrucache/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/lua-resty-lrucache/version: -------------------------------------------------------------------------------- 1 | LUA_RESTY_LRUCACHE_VERSION := 0.15 2 | -------------------------------------------------------------------------------- /contrib/src/luajit2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/luajit2/Makefile -------------------------------------------------------------------------------- /contrib/src/luajit2/Makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/luajit2/Makefile.patch -------------------------------------------------------------------------------- /contrib/src/luajit2/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/luajit2/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/luajit2/src-luaconf.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/luajit2/src-luaconf.h.patch -------------------------------------------------------------------------------- /contrib/src/luajit2/version: -------------------------------------------------------------------------------- 1 | LUAJIT2_VERSION := 2.1-20250826 2 | -------------------------------------------------------------------------------- /contrib/src/nginx-acme/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/nginx-acme/Makefile -------------------------------------------------------------------------------- /contrib/src/nginx-acme/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/nginx-acme/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/nginx-acme/version: -------------------------------------------------------------------------------- 1 | NGINX_ACME_VERSION := 0.3.1 2 | -------------------------------------------------------------------------------- /contrib/src/nginx-fips-check-module/0001-Added-support-for-OpenSSL-3.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/nginx-fips-check-module/0001-Added-support-for-OpenSSL-3.0.patch -------------------------------------------------------------------------------- /contrib/src/nginx-fips-check-module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/nginx-fips-check-module/Makefile -------------------------------------------------------------------------------- /contrib/src/nginx-fips-check-module/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/nginx-fips-check-module/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/nginx-fips-check-module/version: -------------------------------------------------------------------------------- 1 | NGINX_FIPS_CHECK_MODULE_VERSION := 0.1 2 | -------------------------------------------------------------------------------- /contrib/src/nginx-otel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/nginx-otel/Makefile -------------------------------------------------------------------------------- /contrib/src/nginx-otel/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/nginx-otel/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/nginx-otel/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/nginx-otel/version -------------------------------------------------------------------------------- /contrib/src/nginx-rtmp-module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/nginx-rtmp-module/Makefile -------------------------------------------------------------------------------- /contrib/src/nginx-rtmp-module/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/nginx-rtmp-module/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/nginx-rtmp-module/version: -------------------------------------------------------------------------------- 1 | NGINX_RTMP_MODULE_VERSION := 1.2.2 2 | -------------------------------------------------------------------------------- /contrib/src/nginx-tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/nginx-tests/Makefile -------------------------------------------------------------------------------- /contrib/src/nginx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/nginx/Makefile -------------------------------------------------------------------------------- /contrib/src/nginx/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/nginx/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/nginx/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/nginx/version -------------------------------------------------------------------------------- /contrib/src/ngx_brotli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/ngx_brotli/Makefile -------------------------------------------------------------------------------- /contrib/src/ngx_brotli/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/ngx_brotli/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/ngx_brotli/version: -------------------------------------------------------------------------------- 1 | NGX_BROTLI_VERSION := 1.0.0 2 | -------------------------------------------------------------------------------- /contrib/src/ngx_devel_kit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/ngx_devel_kit/Makefile -------------------------------------------------------------------------------- /contrib/src/ngx_devel_kit/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/ngx_devel_kit/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/ngx_devel_kit/version: -------------------------------------------------------------------------------- 1 | NGX_DEVEL_KIT_VERSION := 0.3.3 2 | -------------------------------------------------------------------------------- /contrib/src/ngx_http_geoip2_module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/ngx_http_geoip2_module/Makefile -------------------------------------------------------------------------------- /contrib/src/ngx_http_geoip2_module/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/ngx_http_geoip2_module/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/ngx_http_geoip2_module/version: -------------------------------------------------------------------------------- 1 | NGX_HTTP_GEOIP2_MODULE_VERSION := 3.4 2 | -------------------------------------------------------------------------------- /contrib/src/ngx_http_substitutions_filter_module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/ngx_http_substitutions_filter_module/Makefile -------------------------------------------------------------------------------- /contrib/src/ngx_http_substitutions_filter_module/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/ngx_http_substitutions_filter_module/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/ngx_http_substitutions_filter_module/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/ngx_http_substitutions_filter_module/version -------------------------------------------------------------------------------- /contrib/src/njs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/njs/Makefile -------------------------------------------------------------------------------- /contrib/src/njs/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/njs/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/njs/version: -------------------------------------------------------------------------------- 1 | NJS_VERSION := 0.9.4 2 | -------------------------------------------------------------------------------- /contrib/src/opentelemetry-cpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/opentelemetry-cpp/Makefile -------------------------------------------------------------------------------- /contrib/src/opentelemetry-cpp/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/opentelemetry-cpp/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/opentelemetry-cpp/version: -------------------------------------------------------------------------------- 1 | OPENTELEMETRY_CPP_VERSION := 1.23.0 2 | -------------------------------------------------------------------------------- /contrib/src/opentelemetry-proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/opentelemetry-proto/Makefile -------------------------------------------------------------------------------- /contrib/src/opentelemetry-proto/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/opentelemetry-proto/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/opentelemetry-proto/version: -------------------------------------------------------------------------------- 1 | OPENTELEMETRY_PROTO_VERSION := 1.8.0 2 | -------------------------------------------------------------------------------- /contrib/src/passenger/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/passenger/Makefile -------------------------------------------------------------------------------- /contrib/src/passenger/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/passenger/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/passenger/build-nginx.rb.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/passenger/build-nginx.rb.patch -------------------------------------------------------------------------------- /contrib/src/passenger/src-nginx_module-ContentHandler.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/passenger/src-nginx_module-ContentHandler.c.patch -------------------------------------------------------------------------------- /contrib/src/passenger/version: -------------------------------------------------------------------------------- 1 | PASSENGER_VERSION := 6.1.0 2 | -------------------------------------------------------------------------------- /contrib/src/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/protobuf/Makefile -------------------------------------------------------------------------------- /contrib/src/protobuf/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/protobuf/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/protobuf/version: -------------------------------------------------------------------------------- 1 | PROTOBUF_VERSION := 3.19.5 2 | -------------------------------------------------------------------------------- /contrib/src/quickjs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/quickjs/Makefile -------------------------------------------------------------------------------- /contrib/src/quickjs/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/quickjs/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/quickjs/quickjs.makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/quickjs/quickjs.makefile.patch -------------------------------------------------------------------------------- /contrib/src/quickjs/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/quickjs/version -------------------------------------------------------------------------------- /contrib/src/set-misc-nginx-module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/set-misc-nginx-module/Makefile -------------------------------------------------------------------------------- /contrib/src/set-misc-nginx-module/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/set-misc-nginx-module/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/set-misc-nginx-module/version: -------------------------------------------------------------------------------- 1 | SET_MISC_NGINX_MODULE_VERSION := 0.33 2 | -------------------------------------------------------------------------------- /contrib/src/spnego-http-auth-nginx-module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/spnego-http-auth-nginx-module/Makefile -------------------------------------------------------------------------------- /contrib/src/spnego-http-auth-nginx-module/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/spnego-http-auth-nginx-module/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/spnego-http-auth-nginx-module/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/spnego-http-auth-nginx-module/version -------------------------------------------------------------------------------- /contrib/src/stream-lua-nginx-module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/stream-lua-nginx-module/Makefile -------------------------------------------------------------------------------- /contrib/src/stream-lua-nginx-module/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/stream-lua-nginx-module/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/stream-lua-nginx-module/config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/stream-lua-nginx-module/config.patch -------------------------------------------------------------------------------- /contrib/src/stream-lua-nginx-module/proxy-ssl-verifyby.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/stream-lua-nginx-module/proxy-ssl-verifyby.patch -------------------------------------------------------------------------------- /contrib/src/stream-lua-nginx-module/version: -------------------------------------------------------------------------------- 1 | STREAM_LUA_NGINX_MODULE_VERSION := 0.0.17 2 | -------------------------------------------------------------------------------- /contrib/src/xslscript/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/xslscript/Makefile -------------------------------------------------------------------------------- /contrib/src/xslscript/SHA512SUMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/contrib/src/xslscript/SHA512SUMS -------------------------------------------------------------------------------- /contrib/src/xslscript/version: -------------------------------------------------------------------------------- 1 | XSLSCRIPT_VERSION := 9204424259c343ca08a18a78915f40f28025e093 2 | -------------------------------------------------------------------------------- /contrib/tarballs/.gitignore: -------------------------------------------------------------------------------- 1 | *.tar.* 2 | *.githash 3 | -------------------------------------------------------------------------------- /debian/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/.gitignore -------------------------------------------------------------------------------- /debian/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/Makefile -------------------------------------------------------------------------------- /debian/Makefile.module-acme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/Makefile.module-acme -------------------------------------------------------------------------------- /debian/Makefile.module-auth-spnego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/Makefile.module-auth-spnego -------------------------------------------------------------------------------- /debian/Makefile.module-brotli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/Makefile.module-brotli -------------------------------------------------------------------------------- /debian/Makefile.module-encrypted-session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/Makefile.module-encrypted-session -------------------------------------------------------------------------------- /debian/Makefile.module-fips-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/Makefile.module-fips-check -------------------------------------------------------------------------------- /debian/Makefile.module-geoip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/Makefile.module-geoip -------------------------------------------------------------------------------- /debian/Makefile.module-geoip2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/Makefile.module-geoip2 -------------------------------------------------------------------------------- /debian/Makefile.module-headers-more: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/Makefile.module-headers-more -------------------------------------------------------------------------------- /debian/Makefile.module-image-filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/Makefile.module-image-filter -------------------------------------------------------------------------------- /debian/Makefile.module-lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/Makefile.module-lua -------------------------------------------------------------------------------- /debian/Makefile.module-ndk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/Makefile.module-ndk -------------------------------------------------------------------------------- /debian/Makefile.module-njs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/Makefile.module-njs -------------------------------------------------------------------------------- /debian/Makefile.module-otel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/Makefile.module-otel -------------------------------------------------------------------------------- /debian/Makefile.module-passenger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/Makefile.module-passenger -------------------------------------------------------------------------------- /debian/Makefile.module-perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/Makefile.module-perl -------------------------------------------------------------------------------- /debian/Makefile.module-rtmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/Makefile.module-rtmp -------------------------------------------------------------------------------- /debian/Makefile.module-set-misc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/Makefile.module-set-misc -------------------------------------------------------------------------------- /debian/Makefile.module-subs-filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/Makefile.module-subs-filter -------------------------------------------------------------------------------- /debian/Makefile.module-xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/Makefile.module-xslt -------------------------------------------------------------------------------- /debian/debian-plus/nginx-plus-module.control.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/debian-plus/nginx-plus-module.control.in -------------------------------------------------------------------------------- /debian/debian/compat: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /debian/debian/extra/.hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/debian/nginx-debug.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/debian/nginx-debug.default -------------------------------------------------------------------------------- /debian/debian/nginx-debug.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/debian/nginx-debug.service -------------------------------------------------------------------------------- /debian/debian/nginx-module.control.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/debian/nginx-module.control.in -------------------------------------------------------------------------------- /debian/debian/nginx-module.postinst.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/debian/nginx-module.postinst.in -------------------------------------------------------------------------------- /debian/debian/nginx-module.rules.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/debian/nginx-module.rules.in -------------------------------------------------------------------------------- /debian/debian/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/debian/nginx.conf -------------------------------------------------------------------------------- /debian/debian/nginx.control.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/debian/nginx.control.in -------------------------------------------------------------------------------- /debian/debian/nginx.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/debian/nginx.default -------------------------------------------------------------------------------- /debian/debian/nginx.default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/debian/nginx.default.conf -------------------------------------------------------------------------------- /debian/debian/nginx.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/debian/nginx.dirs -------------------------------------------------------------------------------- /debian/debian/nginx.docs: -------------------------------------------------------------------------------- 1 | CHANGES.ru 2 | README.md 3 | -------------------------------------------------------------------------------- /debian/debian/nginx.init.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/debian/nginx.init.in -------------------------------------------------------------------------------- /debian/debian/nginx.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/debian/nginx.install -------------------------------------------------------------------------------- /debian/debian/nginx.lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/debian/nginx.lintian-overrides -------------------------------------------------------------------------------- /debian/debian/nginx.logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/debian/nginx.logrotate -------------------------------------------------------------------------------- /debian/debian/nginx.manpages: -------------------------------------------------------------------------------- 1 | objs/nginx.8 2 | -------------------------------------------------------------------------------- /debian/debian/nginx.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/debian/nginx.postinst -------------------------------------------------------------------------------- /debian/debian/nginx.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/debian/nginx.postrm -------------------------------------------------------------------------------- /debian/debian/nginx.preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/debian/nginx.preinst -------------------------------------------------------------------------------- /debian/debian/nginx.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/debian/nginx.prerm -------------------------------------------------------------------------------- /debian/debian/nginx.rules.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/debian/nginx.rules.in -------------------------------------------------------------------------------- /debian/debian/nginx.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/debian/nginx.service -------------------------------------------------------------------------------- /debian/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/debian/source/lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/debian/debian/source/lintian-overrides -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/change_log_conf.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/change_log_conf.dtd -------------------------------------------------------------------------------- /docs/change_log_conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/change_log_conf.xml -------------------------------------------------------------------------------- /docs/changes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/changes.dtd -------------------------------------------------------------------------------- /docs/changes.xsls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/changes.xsls -------------------------------------------------------------------------------- /docs/changes.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/changes.xslt -------------------------------------------------------------------------------- /docs/nginx-module-acme.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-acme.copyright -------------------------------------------------------------------------------- /docs/nginx-module-acme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-acme.xml -------------------------------------------------------------------------------- /docs/nginx-module-auth-spnego.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-auth-spnego.copyright -------------------------------------------------------------------------------- /docs/nginx-module-auth-spnego.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-auth-spnego.xml -------------------------------------------------------------------------------- /docs/nginx-module-brotli.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-brotli.copyright -------------------------------------------------------------------------------- /docs/nginx-module-brotli.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-brotli.xml -------------------------------------------------------------------------------- /docs/nginx-module-encrypted-session.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-encrypted-session.copyright -------------------------------------------------------------------------------- /docs/nginx-module-encrypted-session.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-encrypted-session.xml -------------------------------------------------------------------------------- /docs/nginx-module-fips-check.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-fips-check.copyright -------------------------------------------------------------------------------- /docs/nginx-module-fips-check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-fips-check.xml -------------------------------------------------------------------------------- /docs/nginx-module-geoip.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-geoip.copyright -------------------------------------------------------------------------------- /docs/nginx-module-geoip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-geoip.xml -------------------------------------------------------------------------------- /docs/nginx-module-geoip2.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-geoip2.copyright -------------------------------------------------------------------------------- /docs/nginx-module-geoip2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-geoip2.xml -------------------------------------------------------------------------------- /docs/nginx-module-headers-more.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-headers-more.copyright -------------------------------------------------------------------------------- /docs/nginx-module-headers-more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-headers-more.xml -------------------------------------------------------------------------------- /docs/nginx-module-image-filter.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-image-filter.copyright -------------------------------------------------------------------------------- /docs/nginx-module-image-filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-image-filter.xml -------------------------------------------------------------------------------- /docs/nginx-module-lua.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-lua.copyright -------------------------------------------------------------------------------- /docs/nginx-module-lua.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-lua.xml -------------------------------------------------------------------------------- /docs/nginx-module-ndk.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-ndk.copyright -------------------------------------------------------------------------------- /docs/nginx-module-ndk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-ndk.xml -------------------------------------------------------------------------------- /docs/nginx-module-njs.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-njs.copyright -------------------------------------------------------------------------------- /docs/nginx-module-njs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-njs.xml -------------------------------------------------------------------------------- /docs/nginx-module-otel.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-otel.copyright -------------------------------------------------------------------------------- /docs/nginx-module-otel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-otel.xml -------------------------------------------------------------------------------- /docs/nginx-module-passenger.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-passenger.copyright -------------------------------------------------------------------------------- /docs/nginx-module-passenger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-passenger.xml -------------------------------------------------------------------------------- /docs/nginx-module-perl.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-perl.copyright -------------------------------------------------------------------------------- /docs/nginx-module-perl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-perl.xml -------------------------------------------------------------------------------- /docs/nginx-module-rtmp.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-rtmp.copyright -------------------------------------------------------------------------------- /docs/nginx-module-rtmp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-rtmp.xml -------------------------------------------------------------------------------- /docs/nginx-module-set-misc.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-set-misc.copyright -------------------------------------------------------------------------------- /docs/nginx-module-set-misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-set-misc.xml -------------------------------------------------------------------------------- /docs/nginx-module-subs-filter.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-subs-filter.copyright -------------------------------------------------------------------------------- /docs/nginx-module-subs-filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-subs-filter.xml -------------------------------------------------------------------------------- /docs/nginx-module-xslt.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-xslt.copyright -------------------------------------------------------------------------------- /docs/nginx-module-xslt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx-module-xslt.xml -------------------------------------------------------------------------------- /docs/nginx.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx.copyright -------------------------------------------------------------------------------- /docs/nginx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/docs/nginx.xml -------------------------------------------------------------------------------- /rpm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/.gitignore -------------------------------------------------------------------------------- /rpm/SOURCES/RPM-GPG-KEY-nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SOURCES/RPM-GPG-KEY-nginx -------------------------------------------------------------------------------- /rpm/SOURCES/logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SOURCES/logrotate -------------------------------------------------------------------------------- /rpm/SOURCES/nginx-debug.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SOURCES/nginx-debug.service -------------------------------------------------------------------------------- /rpm/SOURCES/nginx.check-reload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SOURCES/nginx.check-reload.sh -------------------------------------------------------------------------------- /rpm/SOURCES/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SOURCES/nginx.conf -------------------------------------------------------------------------------- /rpm/SOURCES/nginx.default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SOURCES/nginx.default.conf -------------------------------------------------------------------------------- /rpm/SOURCES/nginx.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SOURCES/nginx.repo -------------------------------------------------------------------------------- /rpm/SOURCES/nginx.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SOURCES/nginx.service -------------------------------------------------------------------------------- /rpm/SOURCES/nginx.suse.logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SOURCES/nginx.suse.logrotate -------------------------------------------------------------------------------- /rpm/SOURCES/nginx.upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SOURCES/nginx.upgrade.sh -------------------------------------------------------------------------------- /rpm/SPECS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/Makefile -------------------------------------------------------------------------------- /rpm/SPECS/Makefile.module-acme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/Makefile.module-acme -------------------------------------------------------------------------------- /rpm/SPECS/Makefile.module-auth-spnego: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/Makefile.module-auth-spnego -------------------------------------------------------------------------------- /rpm/SPECS/Makefile.module-brotli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/Makefile.module-brotli -------------------------------------------------------------------------------- /rpm/SPECS/Makefile.module-encrypted-session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/Makefile.module-encrypted-session -------------------------------------------------------------------------------- /rpm/SPECS/Makefile.module-fips-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/Makefile.module-fips-check -------------------------------------------------------------------------------- /rpm/SPECS/Makefile.module-geoip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/Makefile.module-geoip -------------------------------------------------------------------------------- /rpm/SPECS/Makefile.module-geoip2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/Makefile.module-geoip2 -------------------------------------------------------------------------------- /rpm/SPECS/Makefile.module-headers-more: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/Makefile.module-headers-more -------------------------------------------------------------------------------- /rpm/SPECS/Makefile.module-image-filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/Makefile.module-image-filter -------------------------------------------------------------------------------- /rpm/SPECS/Makefile.module-lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/Makefile.module-lua -------------------------------------------------------------------------------- /rpm/SPECS/Makefile.module-ndk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/Makefile.module-ndk -------------------------------------------------------------------------------- /rpm/SPECS/Makefile.module-njs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/Makefile.module-njs -------------------------------------------------------------------------------- /rpm/SPECS/Makefile.module-otel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/Makefile.module-otel -------------------------------------------------------------------------------- /rpm/SPECS/Makefile.module-passenger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/Makefile.module-passenger -------------------------------------------------------------------------------- /rpm/SPECS/Makefile.module-perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/Makefile.module-perl -------------------------------------------------------------------------------- /rpm/SPECS/Makefile.module-rtmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/Makefile.module-rtmp -------------------------------------------------------------------------------- /rpm/SPECS/Makefile.module-set-misc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/Makefile.module-set-misc -------------------------------------------------------------------------------- /rpm/SPECS/Makefile.module-subs-filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/Makefile.module-subs-filter -------------------------------------------------------------------------------- /rpm/SPECS/Makefile.module-xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/Makefile.module-xslt -------------------------------------------------------------------------------- /rpm/SPECS/nginx-module.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/nginx-module.spec.in -------------------------------------------------------------------------------- /rpm/SPECS/nginx-plus-module.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/nginx-plus-module.spec.in -------------------------------------------------------------------------------- /rpm/SPECS/nginx-release-centos.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/nginx-release-centos.spec -------------------------------------------------------------------------------- /rpm/SPECS/nginx-release-rhel.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/nginx-release-rhel.spec -------------------------------------------------------------------------------- /rpm/SPECS/nginx.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nginx/pkg-oss/HEAD/rpm/SPECS/nginx.spec.in --------------------------------------------------------------------------------