Differences between version 20 and previous revision of ApacheNotes.
Other diffs: Previous Major Revision, Previous Author, or view the Annotated Edit History
Newer page: | version 20 | Last edited on Friday, January 28, 2005 9:11:59 am | by JohnMcPherson | Revert |
Older page: | version 19 | Last edited on Friday, January 28, 2005 9:09:36 am | by JohnMcPherson | Revert |
@@ -40,10 +40,17 @@
!!! Extra information in directory listings
You can have additional information displayed at the top and bottom of a <tt>mod_autoindex</tt> directory listing by putting the text in a file called <tt>HEADER</tt> and <tt>README</tt>, respectively. Either file can any have FileExtension (or none). To enable this feature, you will need <tt>~MultiViews on</tt> to be in effect for that request.
+
!!! Apache and [IPv6]
+Tell apache to listen on "::", which is the ipv6 version of 0.0.0.0, on whatever port. Eg, in httpd.conf:
+<verbatim>
+ Listen :::80
+ BindAddress ::
+</verbatim>
+
If you want a ~VirtualHost available on both IPv4 and IPv6, then give it a name that resolves to both a v4 and v6 address. It won't work if you give use a name that doesn't have a v6 address, and then try to use ~ServerName or ~ServerAlias. Eg:
<verbatim>
$ host wlug.org.nz