LSTSRV-L Archives

LISTSERV Site Administrators' Forum

LSTSRV-L

Options: Use Monospaced Font
Show Text Part by Default
Show All Mail Headers

Topic: [<< First] [< Prev] [Next >] [Last >>]

Print Reply
Valdis Kletnieks <[log in to unmask]>
Tue, 10 Feb 2004 15:05:36 -0500
text/plain (21 lines)
On Tue, 10 Feb 2004 13:15:15 EST, "Gilmore,Mindy" <[log in to unmask]>  said:
> We want to configure our website to have a different address than the
> listserv address.  Example sending the post ends in a @oclc.org, but we
> don't want our webpages to have that, we want listserv.oclc.org.   Has
> anyone out there had to configure their install that way.

With apache, it would be a matter of adding a <VirtualHost> definition...

<VirtualHost your.ip.address.here>
     ServerName www.oclc.org
     DocumentRoot /usr/local/apache/htdocs
</virtualhost>

<VirtualHost  your.ip.address.here>
    ServerName listserv.oclc.org
    DocumentRoot /usr/local/path/to/listserv/files/here
</VirtualHost>

This of course assumes that your webserver and listserv are running on
the same machine.

ATOM RSS1 RSS2