LSTSRV-L Archives

LISTSERV Site Administrators' Forum

LSTSRV-L

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

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

Parts/Attachments: text/plain (21 lines)
Print Reply
Mime-Version:
1.0
Sender:
LISTSERV site administrators' forum <[log in to unmask]>
Date:
Tue, 10 Feb 2004 15:05:36 -0500
Reply-To:
LISTSERV site administrators' forum <[log in to unmask]>
Subject:
From:
Valdis Kletnieks <[log in to unmask]>
In-Reply-To:
Your message of "Tue, 10 Feb 2004 13:15:15 EST." <[log in to unmask]>
Content-Type:
text/plain; charset=us-ascii
Comments:
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