Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Jun 2000 22:07:34 -0600 (MDT)
From:      Nick Rogness <nick@rapidnet.com>
To:        "Chutima S." <chutima_s@zdnetonebox.com>
Cc:        freebsd-net@FreeBSD.ORG
Subject:   Re: How to: Web service for other website.
Message-ID:  <Pine.BSF.4.05.10006122154560.90094-100000@rapidnet.com>
In-Reply-To: <20000613031556.GKL29121.mta02@onebox.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On Mon, 12 Jun 2000, Chutima S. wrote:

> My company will release web service on internet to other websites.
> Where can I find technology issue about it?  

	What do you mean by this?  Are customers dialing up to your
	service or what?  Are you host web server space?  Clarify.

> Such as:
> 1. I know that we can apply DNS to load balancing (round robin).
> But I like to know can I apply DNS to fault tolorence(if one of 
> our server die all request from customer websites will connect
> to the rest of our servers)? 

	What type of remote-access gear are you using?  In most types
	you can setup a primary name server and a secondary (backup)
	server within your gear.  Cisco's allow multiple 'ip name-server'

	Setup multiple nameservers that are authoritative for your
	domains.

	Setup a 'cluster' of machines.

> 2. Our webserver will service several customer websites.  How 
> can I use difference URL for each customer website?

	Apache virtual hosts.  Set this up in your web server.


> 3. How can I protect my webserver from other website or browser
> that is not my customer website? (Someone talk about relay URL.)
> 

	This is also setup in your web server.  You can setup allowable
	hosts:

	<location /path_to_your _website>
	Deny from all
	Allow from .your_domain.com
	</location>

	Or you can setup firewall rules:

	ipfw add 2000 allow tcp from your_ip_range to your_web_server 80
	ipfw add 2001 deny tcp from any to your_web_server 80
	
	I don't know exactly what you are asking so I can't be more
	specific...sorry.


Nick Rogness
- Speak softly and carry a Gigabit switch.




To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-net" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.05.10006122154560.90094-100000>