A high performance web server and reverse proxy server
Go to file
2024-07-17 01:58:29 +02:00
.gitignore Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
50x.html Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
404.html Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
0001-remove-Werror-in-upstream-build-scripts.patch Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
0002-fix-PIDFile-handling.patch Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
0003-Support-loading-cert-hardware-token-PKC.patch Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
0004-Set-proper-compiler-optimalization-level-O2-for-perl.patch Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
0005-Init-openssl-engine-properly.patch Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
0007-Enable-TLSv1.3-by-default.patch Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
0008-add-ssl-pass-phrase-dialog.patch Resolves: RHEL-38498 - Nginx seg faults when proxy_ssl_certificate is set 2024-05-23 16:29:36 +02:00
0009-CVE-2023-44487-HTTP-2-per-iteration-stream-handling.patch Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
0010-defer-ENGINE_finish-calls-to-a-cleanup.patch Resolves: RHEL-40622 - openssl 3.2 ENGINE regression in nginx 2024-06-13 18:20:11 +02:00
0011-Optimized-chain-link-usage.patch Resolves: RHEL-49350 - nginx worker processes memory leak 2024-07-17 01:58:29 +02:00
gating.yaml Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
macros.nginxmods.in Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
maxim.key Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:40:45 +01:00
mdounin.key Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:40:45 +01:00
nginx-logo.png Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
nginx-ssl-pass-dialog Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
nginx-upgrade Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
nginx-upgrade.8 Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
nginx.conf Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
nginx.gpg Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
nginx.logrotate Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
nginx.service Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
nginx.spec Resolves: RHEL-49350 - nginx worker processes memory leak 2024-07-17 01:58:29 +02:00
nginxmods.attr Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
README.dynamic Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
sb.key Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:40:45 +01:00
sources Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00
thresh.key Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:40:45 +01:00
UPGRADE-NOTES-1.6-to-1.10 Resolves: RHEL-14713 - add nginx:1.24 to RHEL 9.4 2024-01-18 21:08:36 +01:00

###############
Dynamic modules
###############

Dynamic modules are loaded using the "load_modules" directive. The RPM package
for each module has a '.conf' file in the /usr/share/nginx/modules directory.
The '.conf' file contains a single "load_modules" directive.

This means that whenever a new dynamic module is installed, it will
automatically be enabled and Nginx will be reloaded.

--------------------------------------------------------
Prevent dynamic modules from being enabled automatically
--------------------------------------------------------

You may want to avoid dynamic modules being enabled automatically. Simply
remove this line from the top of /etc/nginx/nginx.conf:

    include /usr/share/nginx/modules/*.conf;