├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ └── fetch_sources.sh ├── .gitignore ├── LICENSE ├── README.md ├── SOURCES ├── admin-ips.conf ├── aerisnetwork-ips ├── blacklist.conf ├── cloudflare.conf ├── fpm-default-users.conf ├── fpm-default.conf ├── fpm-drupal.conf ├── fpm-laravel-users.conf ├── fpm-laravel.conf ├── fpm-opencart.conf ├── fpm-prestashop.conf ├── fpm-sendy-users.conf ├── fpm-sendy.conf ├── fpm-wordpress-cache-users.conf ├── fpm-wordpress-cache.conf ├── fpm-wordpress-mu-cache-users.conf ├── fpm-wordpress-mu-cache.conf ├── fpm-wordpress-mu-users.conf ├── fpm-wordpress-mu.conf ├── fpm-wordpress-sub-cache-users.conf ├── fpm-wordpress-sub-cache.conf ├── fpm-wordpress-sub-users.conf ├── fpm-wordpress-sub.conf ├── fpm-wordpress-users.conf ├── fpm-wordpress.conf ├── mailgun-tracking.conf ├── nginx-version.patch ├── nginx.check-reload.sh ├── nginx.conf ├── nginx.init ├── nginx.logrotate ├── nginx.pagespeed.conf ├── nginx.service ├── nginx.upgrade.sh ├── ngx_cache_purge-fix-compatibility-with-nginx-1.11.6.patch ├── ngx_cache_purge-fix-compatibility-with-nginx-1.19.3.patch ├── ngx_dynamic-tls-records-1.15.8.patch ├── ngx_dynamic-tls-records-1.25.1.patch ├── ngx_dynamic-tls-records-1.27.5.patch ├── ngx_dynamic-tls-records-1.29.2.patch ├── ngx_http2_hpack-1.15.3.patch ├── pagespeed.conf ├── restrictions-users.conf ├── restrictions.conf ├── ssl.conf-example └── virtual.conf-example ├── SPECS └── nginx-more.spec └── USER-GUIDE.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: karljohns0n 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/fetch_sources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/.github/workflows/fetch_sources.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/README.md -------------------------------------------------------------------------------- /SOURCES/admin-ips.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/admin-ips.conf -------------------------------------------------------------------------------- /SOURCES/aerisnetwork-ips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/aerisnetwork-ips -------------------------------------------------------------------------------- /SOURCES/blacklist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/blacklist.conf -------------------------------------------------------------------------------- /SOURCES/cloudflare.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/cloudflare.conf -------------------------------------------------------------------------------- /SOURCES/fpm-default-users.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/fpm-default-users.conf -------------------------------------------------------------------------------- /SOURCES/fpm-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/fpm-default.conf -------------------------------------------------------------------------------- /SOURCES/fpm-drupal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/fpm-drupal.conf -------------------------------------------------------------------------------- /SOURCES/fpm-laravel-users.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/fpm-laravel-users.conf -------------------------------------------------------------------------------- /SOURCES/fpm-laravel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/fpm-laravel.conf -------------------------------------------------------------------------------- /SOURCES/fpm-opencart.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/fpm-opencart.conf -------------------------------------------------------------------------------- /SOURCES/fpm-prestashop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/fpm-prestashop.conf -------------------------------------------------------------------------------- /SOURCES/fpm-sendy-users.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/fpm-sendy-users.conf -------------------------------------------------------------------------------- /SOURCES/fpm-sendy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/fpm-sendy.conf -------------------------------------------------------------------------------- /SOURCES/fpm-wordpress-cache-users.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/fpm-wordpress-cache-users.conf -------------------------------------------------------------------------------- /SOURCES/fpm-wordpress-cache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/fpm-wordpress-cache.conf -------------------------------------------------------------------------------- /SOURCES/fpm-wordpress-mu-cache-users.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/fpm-wordpress-mu-cache-users.conf -------------------------------------------------------------------------------- /SOURCES/fpm-wordpress-mu-cache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/fpm-wordpress-mu-cache.conf -------------------------------------------------------------------------------- /SOURCES/fpm-wordpress-mu-users.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/fpm-wordpress-mu-users.conf -------------------------------------------------------------------------------- /SOURCES/fpm-wordpress-mu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/fpm-wordpress-mu.conf -------------------------------------------------------------------------------- /SOURCES/fpm-wordpress-sub-cache-users.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/fpm-wordpress-sub-cache-users.conf -------------------------------------------------------------------------------- /SOURCES/fpm-wordpress-sub-cache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/fpm-wordpress-sub-cache.conf -------------------------------------------------------------------------------- /SOURCES/fpm-wordpress-sub-users.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/fpm-wordpress-sub-users.conf -------------------------------------------------------------------------------- /SOURCES/fpm-wordpress-sub.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/fpm-wordpress-sub.conf -------------------------------------------------------------------------------- /SOURCES/fpm-wordpress-users.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/fpm-wordpress-users.conf -------------------------------------------------------------------------------- /SOURCES/fpm-wordpress.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/fpm-wordpress.conf -------------------------------------------------------------------------------- /SOURCES/mailgun-tracking.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/mailgun-tracking.conf -------------------------------------------------------------------------------- /SOURCES/nginx-version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/nginx-version.patch -------------------------------------------------------------------------------- /SOURCES/nginx.check-reload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/nginx.check-reload.sh -------------------------------------------------------------------------------- /SOURCES/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/nginx.conf -------------------------------------------------------------------------------- /SOURCES/nginx.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/nginx.init -------------------------------------------------------------------------------- /SOURCES/nginx.logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/nginx.logrotate -------------------------------------------------------------------------------- /SOURCES/nginx.pagespeed.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/nginx.pagespeed.conf -------------------------------------------------------------------------------- /SOURCES/nginx.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/nginx.service -------------------------------------------------------------------------------- /SOURCES/nginx.upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/nginx.upgrade.sh -------------------------------------------------------------------------------- /SOURCES/ngx_cache_purge-fix-compatibility-with-nginx-1.11.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/ngx_cache_purge-fix-compatibility-with-nginx-1.11.6.patch -------------------------------------------------------------------------------- /SOURCES/ngx_cache_purge-fix-compatibility-with-nginx-1.19.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/ngx_cache_purge-fix-compatibility-with-nginx-1.19.3.patch -------------------------------------------------------------------------------- /SOURCES/ngx_dynamic-tls-records-1.15.8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/ngx_dynamic-tls-records-1.15.8.patch -------------------------------------------------------------------------------- /SOURCES/ngx_dynamic-tls-records-1.25.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/ngx_dynamic-tls-records-1.25.1.patch -------------------------------------------------------------------------------- /SOURCES/ngx_dynamic-tls-records-1.27.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/ngx_dynamic-tls-records-1.27.5.patch -------------------------------------------------------------------------------- /SOURCES/ngx_dynamic-tls-records-1.29.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/ngx_dynamic-tls-records-1.29.2.patch -------------------------------------------------------------------------------- /SOURCES/ngx_http2_hpack-1.15.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/ngx_http2_hpack-1.15.3.patch -------------------------------------------------------------------------------- /SOURCES/pagespeed.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/pagespeed.conf -------------------------------------------------------------------------------- /SOURCES/restrictions-users.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/restrictions-users.conf -------------------------------------------------------------------------------- /SOURCES/restrictions.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/restrictions.conf -------------------------------------------------------------------------------- /SOURCES/ssl.conf-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/ssl.conf-example -------------------------------------------------------------------------------- /SOURCES/virtual.conf-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SOURCES/virtual.conf-example -------------------------------------------------------------------------------- /SPECS/nginx-more.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/SPECS/nginx-more.spec -------------------------------------------------------------------------------- /USER-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karljohns0n/nginx-more/HEAD/USER-GUIDE.md --------------------------------------------------------------------------------