Re: [qmailtoaster] Re: OT default apache ?

2009-09-14 Thread Richard Vinke
. Taking good security practices in the httpd.conf and php.ini should keep you fairly safe. -Original Message- From: Maxwell Smart [mailto:c...@yother.com] Sent: Sunday, September 13, 2009 8:52 PM To: qmailtoaster-list@qmailtoaster.com Subject: Re: [qmailtoaster] Re: OT default apache

Re: [qmailtoaster] Re: OT default apache ?

2009-09-14 Thread Maxwell Smart
: Sunday, September 13, 2009 8:52 PM To: qmailtoaster-list@qmailtoaster.com Subject: Re: [qmailtoaster] Re: OT default apache ? Thanks guys. This is a public web server. I just want to deny access to incoming requests that are directed at the IP and not a specific domain. Am I correct

[qmailtoaster] Re: OT default apache ?

2009-09-13 Thread Maxwell Smart
This is more an Apache question, but I know that most everyone on this list with the exception of me knows the answer. How do I setup my webserver not to answer to requests to my ip? I have been reading that this can be very dangerous and mine currently answers to my default page served up by

Re: [qmailtoaster] Re: OT default apache ?

2009-09-13 Thread Randy Melder
I'm not sure I'm getting the intent of the question, but... You could just stop apache. Or... if you wanna view pages locally, but block outsiders: In httpd.conf : Directory / Order Deny,Allow Deny from all Allow from 127.0.0.1 /Directory On Sun, Sep 13, 2009 at 6:14 PM, Maxwell

Re: [qmailtoaster] Re: OT default apache ?

2009-09-13 Thread Maxwell Smart
I want all my virtual servers to answer, but not when someone uses http://192.168.0.1 I want this to show an error page. I read that it prevents cross scripting and some DNS vulnerabilities. CJ Randy Melder wrote: I'm not sure I'm getting the intent of the question, but... You could just

RE: [qmailtoaster] Re: OT default apache ?

2009-09-13 Thread Domnick Eger
Your best bet is to use .htaccess Deny from All Allow from 192.168.1.0/24 -Original Message- From: Maxwell Smart [mailto:c...@yother.com] Sent: Sunday, September 13, 2009 6:14 PM To: qmailtoaster-list@qmailtoaster.com Subject: [qmailtoaster] Re: OT default apache ? This is more

RE: [qmailtoaster] Re: OT default apache ?

2009-09-13 Thread Domnick Eger
Best to put this in your directory root, if you want only your internal user to access it. -Original Message- From: Domnick Eger [mailto:de...@cobercafe.net] Sent: Sunday, September 13, 2009 6:59 PM To: qmailtoaster-list@qmailtoaster.com Subject: RE: [qmailtoaster] Re: OT default apache

Re: [qmailtoaster] Re: OT default apache ?

2009-09-13 Thread Maxwell Smart
this in your directory root, if you want only your internal user to access it. -Original Message- From: Domnick Eger [mailto:de...@cobercafe.net] Sent: Sunday, September 13, 2009 6:59 PM To: qmailtoaster-list@qmailtoaster.com Subject: RE: [qmailtoaster] Re: OT default apache ? Your best bet

RE: [qmailtoaster] Re: OT default apache ?

2009-09-13 Thread Domnick Eger
To: qmailtoaster-list@qmailtoaster.com Subject: Re: [qmailtoaster] Re: OT default apache ? Thanks guys. This is a public web server. I just want to deny access to incoming requests that are directed at the IP and not a specific domain. Am I correct with my understanding of what I read about it's