forked from rpms/nginx
1
0
Fork 0
A high performance web server and reverse proxy server
Go to file
Petr Šabata 497c396bdb RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN
with the following as its source:
https://src.fedoraproject.org/rpms/nginx#bd726b71e50db2c0a3eabdfecd1ec3b8cfefeb08
2020-10-15 21:06:25 +02:00
.gitignore RHEL 9.0.0 Alpha bootstrap 2020-10-15 21:06:25 +02:00
50x.html RHEL 9.0.0 Alpha bootstrap 2020-10-15 21:06:25 +02:00
404.html RHEL 9.0.0 Alpha bootstrap 2020-10-15 21:06:25 +02:00
README.dynamic RHEL 9.0.0 Alpha bootstrap 2020-10-15 21:06:25 +02:00
UPGRADE-NOTES-1.6-to-1.10 RHEL 9.0.0 Alpha bootstrap 2020-10-15 21:06:25 +02:00
aalexeev.key RHEL 9.0.0 Alpha bootstrap 2020-10-15 21:06:25 +02:00
is.key RHEL 9.0.0 Alpha bootstrap 2020-10-15 21:06:25 +02:00
maxim.key RHEL 9.0.0 Alpha bootstrap 2020-10-15 21:06:25 +02:00
mdounin.key RHEL 9.0.0 Alpha bootstrap 2020-10-15 21:06:25 +02:00
nginx-1.12.1-logs-perm.patch RHEL 9.0.0 Alpha bootstrap 2020-10-15 21:06:25 +02:00
nginx-auto-cc-gcc.patch RHEL 9.0.0 Alpha bootstrap 2020-10-15 21:06:25 +02:00
nginx-logo.png RHEL 9.0.0 Alpha bootstrap 2020-10-15 21:06:25 +02:00
nginx-upgrade RHEL 9.0.0 Alpha bootstrap 2020-10-15 21:06:25 +02:00
nginx-upgrade.8 RHEL 9.0.0 Alpha bootstrap 2020-10-15 21:06:25 +02:00
nginx.conf RHEL 9.0.0 Alpha bootstrap 2020-10-15 21:06:25 +02:00
nginx.logrotate RHEL 9.0.0 Alpha bootstrap 2020-10-15 21:06:25 +02:00
nginx.service RHEL 9.0.0 Alpha bootstrap 2020-10-15 21:06:25 +02:00
nginx.spec RHEL 9.0.0 Alpha bootstrap 2020-10-15 21:06:25 +02:00
sb.key RHEL 9.0.0 Alpha bootstrap 2020-10-15 21:06:25 +02:00
sources RHEL 9.0.0 Alpha bootstrap 2020-10-15 21:06:25 +02:00

README.dynamic

###############
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/lib64/nginx/modules/*.conf;