You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/manual/configuring.html.en
+10-5Lines changed: 10 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ Server.</p>
49
49
added using the <codeclass="directive"><ahref="./mod/core.html#include">Include</a></code>
50
50
directive, and wildcards can be used to include many configuration
51
51
files. Any directive may be placed in any of these configuration
52
-
files. Changes to the main configuration files are only
52
+
files. Changes to the main configuration files are only
53
53
recognized by httpd when it is started or restarted.</p>
54
54
55
55
<p>The server also reads a file containing mime document types;
@@ -79,13 +79,13 @@ Server.</p>
79
79
If "ENVVAR" is the name of a valid environment variable, the value
80
80
of that variable is substituted into that spot in the
81
81
configuration file line, and processing continues as if that text
82
-
were found directly in the configuration file. (If the ENVVAR
82
+
were found directly in the configuration file. (If the ENVVAR
83
83
variable is not found, the characters "${ENVVAR}" are left
84
84
unchanged for use by later stages in the config file
85
85
processing.)</p>
86
86
87
87
<p>Only environment variables defined before the server is started
88
-
can be used in expansions. Variables defined in the
88
+
can be used in expansions. Variables defined in the
89
89
configuration file itself, for example with <codeclass="directive"><ahref="./mod/mod_env.html#setenv">SetEnv</a></code>, take effect too late to be
90
90
used for expansions in the configuration file.</p>
91
91
@@ -115,10 +115,15 @@ Server.</p>
115
115
directive.
116
116
Otherwise, httpd must be recompiled to add or remove modules.
117
117
Configuration directives may be included conditional on a
118
-
presence of a particular module by enclosing them in an <codeclass="directive"><ahref="./mod/core.html#ifmodule"><IfModule></a></code> block.</p>
118
+
presence of a particular module by enclosing them in an <codeclass="directive"><ahref="./mod/core.html#ifmodule"><IfModule></a></code> block. However,
119
+
<codeclass="directive"><IfModule></code> blocks are not
120
+
required, and in some cases may mask the fact that you're missing an
121
+
important module.</p>
119
122
120
123
<p>To see which modules are currently compiled into the server,
121
-
you can use the <code>-l</code> command line option.</p>
124
+
you can use the <code>-l</code> command line option. You can also
125
+
see what modules are loaded dynamically using the <code>-M</code>
0 commit comments