Httpd VirtualHost: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 10: | Line 10: | ||
<tt><VirtualHost></tt> and <tt></VirtualHost></tt> are used to enclose a group of directives that only apply to a particular virtual host. | <tt><VirtualHost></tt> and <tt></VirtualHost></tt> are used to enclose a group of directives that only apply to a particular virtual host. | ||
=Syntax= | |||
<tt> | |||
<VirtualHost IP:port> | |||
ServerName example.novaordis.com | |||
DocumentRoot "/var/www/example.novaordis.com" | |||
ErrorLog "logs/example.novaordis.com-error_log" | |||
</VirtualHost> | |||
</tt> |
Revision as of 19:02, 6 January 2016
External
Internal
Overview
<VirtualHost> and </VirtualHost> are used to enclose a group of directives that only apply to a particular virtual host.
Syntax
<VirtualHost IP:port>
ServerName example.novaordis.com DocumentRoot "/var/www/example.novaordis.com" ErrorLog "logs/example.novaordis.com-error_log"
</VirtualHost>