Httpd Configuration: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 27: Line 27:
==Virtual Host Configuration==
==Virtual Host Configuration==


=Subjects=
==Specialized Configuration==


* [[httpd Convenience Aliases]]
* [[httpd mod_proxy Configuration|mod_proxy Configuration]]
* [[httpd Virtual Host Configuration]]
* [[httpd SSL Configuration]]
* [[httpd Logging Configuration]]
* [[httpd Redirect To Secure Content]]
* [[httpd Persistent Connection Configuration]]
* [[httpd Proxying and Load Balancing Configuration]]
* [[httpd prefork MPM Configuration]]
* [[httpd worker MPM Configuration]]


=Directives=
=Directives=
Line 74: Line 66:
Listen 80
Listen 80
</pre>
</pre>
=Subjects=
* [[httpd Convenience Aliases]]
* [[httpd Virtual Host Configuration]]
* [[httpd SSL Configuration]]
* [[httpd Logging Configuration]]
* [[httpd Redirect To Secure Content]]
* [[httpd Persistent Connection Configuration]]
* [[httpd Proxying and Load Balancing Configuration]]
* [[httpd prefork MPM Configuration]]
* [[httpd worker MPM Configuration]]

Revision as of 19:36, 3 January 2017

Internal

Overview

The default configuration file, for a standard installation, is /etc/httpd/conf/httpd.conf. The configuration directives are grouped into three sections: the Global Environment, the "default" (or "main") Server configuration and "Virtual Host" configurations.

Httpd Configuration Overview.png

Sections

TODO Continue here: https://home.feodorov.com:9443/wiki/Wiki.jsp?page=HttpdConfiguration

The Global Environment Configuration

The "default" (or "main") Server Configuration

Virtual Host Configuration

Specialized Configuration

Directives

Discrete Configuration Elements

Listen

Specify the interface the server listens on:

Listen 12.34.56.78:80

is better than:

Listen 80

Subjects