From 7509fbad7ab4cffd1697e113d445d005e7b87751 Mon Sep 17 00:00:00 2001 From: Rich Bowen Date: Thu, 13 Jun 2002 01:07:09 +0000 Subject: Added example of Using * as argument to NameVirtualHost. Added note that arg to NameVirtualHost is supposed to match the arg to VirtualHost, as this seems to come up several times a week on #apache git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95626 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/core.html.en | 17 +++++++++++++++++ docs/manual/mod/core.xml | 17 +++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/docs/manual/mod/core.html.en b/docs/manual/mod/core.html.en index f76cfdd716..badf52c779 100644 --- a/docs/manual/mod/core.html.en +++ b/docs/manual/mod/core.html.en @@ -1198,6 +1198,23 @@ hosting
NameVirtualHost [fe80::a00:20ff:fea7:ccea]:8080
+

To receive requests on all interfaces, you can use an argument of + *

+ +
NameVirtualHost *
+ +

Argument to <VirtualHost> directive

+

Note that the argument to the <VirtualHost> directive must exactly +match the argument to the NameVirtualHost +directive.

+
+NameVirtualHost 1.2.3.4
+<VirtualHost 1.2.3.4>
+...
+</VirtualHost>
+
+
+

See also


Options Directive

Description: Configures what features are available in a particular directory
Syntax:Options diff --git a/docs/manual/mod/core.xml b/docs/manual/mod/core.xml index 2074e16f69..c61d822772 100644 --- a/docs/manual/mod/core.xml +++ b/docs/manual/mod/core.xml @@ -1704,6 +1704,23 @@ hosting NameVirtualHost [fe80::a00:20ff:fea7:ccea]:8080 +

To receive requests on all interfaces, you can use an argument of + *

+ +NameVirtualHost * + +Argument to <VirtualHost> directive +

Note that the argument to the <VirtualHost> directive must exactly +match the argument to the NameVirtualHost +directive.

+ +NameVirtualHost 1.2.3.4
+<VirtualHost 1.2.3.4>
+...
+</VirtualHost>
+
+
+ See also: Virtual Hosts -- cgit v1.2.1