Httpd Configuration: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
No edit summary
Line 18: Line 18:
* [[httpd ErrorLog|ErrorLog]]
* [[httpd ErrorLog|ErrorLog]]
* [[httpd LogLevel|LogLevel]]
* [[httpd LogLevel|LogLevel]]
=Discrete Configuration Elements=
==Listen==
Specify the interface the server listens on:
<pre>
Listen 12.34.56.78:80
</pre>
is better than:
<pre>
Listen 80
</pre>

Revision as of 06:18, 6 January 2016

Internal

Overview

The default configuration file, for a standard installation, is /etc/httpd/conf/httpd.conf

Subjects

Directives

Discrete Configuration Elements

Listen

Specify the interface the server listens on:

Listen 12.34.56.78:80

is better than:

Listen 80