local machine access only?

2002-07-03 Thread Pearsall, Kyle

Is there a way a simple way to set up Tomcat so that only the local machine 
(localhost) can access the web site?

Thank you,

Kyle Pearsall

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: local machine access only?

2002-07-03 Thread Tim Funk

When declaring your connectors in server.xml add address=127.0.0.1.
EG:
Connector className=org.apache.catalina.connector.http.HttpConnector
port=8080 minProcessors=5 maxProcessors=75
address=127.0.0.1 enableLookups=true redirectPort=8443
acceptCount=10 debug=0 connectionTimeout=6/


Pearsall, Kyle wrote:
 Is there a way a simple way to set up Tomcat so that only the local machine 
(localhost) can access the web site?
 
 Thank you,
 
 Kyle Pearsall
  


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: local machine access only?

2002-07-03 Thread Pearsall, Kyle

That worked!

Thanks,

Kyle

-Original Message-
From: Tim Funk [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 03, 2002 10:15 AM
To: Tomcat Users List
Subject: Re: local machine access only?


When declaring your connectors in server.xml add address=127.0.0.1.
EG:
Connector className=org.apache.catalina.connector.http.HttpConnector
port=8080 minProcessors=5 maxProcessors=75
address=127.0.0.1 enableLookups=true redirectPort=8443
acceptCount=10 debug=0 connectionTimeout=6/


Pearsall, Kyle wrote:
 Is there a way a simple way to set up Tomcat so that only the local machine 
(localhost) can access the web site?
 
 Thank you,
 
 Kyle Pearsall
  


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]