Bestimmte IP Adressen permanent umleiten.

2005-09-01 Thread Thomas Drebert
Hallo Ich will eine bestimmte Ip für den Server sperren, damit der nutzer auch weiß das er gesperrt wurde, würde ich ihn gerne auf eine seite umleiten wo ihm das Mitgeteilt wird. Wenn man nicht den ganzen server sperren kann würde auch ein Verzeichniss mit unter Verzeichnisse reichen und dann

Kleines aber feines Problem mit ReverseProxy (und redirects / PHP)

2005-09-01 Thread Michael Schoenboeck
Moin, Also ich habe ein problem mit mod_proxy und redirects (header Location: ..) Augangsstellung: 3 Domains, davon 2 interne und eine extern erreichbar. Die internen will ich mit inem ReverseProxy nach aussen verfügbar machen. Zu diesem zweck habe ich den virtualhost von domainext.xy so

Re: Bestimmte IP Adressen permanent umleiten.

2005-09-01 Thread Thomas Drebert
Hallo ich hab das mal ausprobiert, funktioniert aber bei mir noch nicht, ich hab das Modul LoadModule rewrite_module modules/mod_rewrite.so aktiviert und es erst einmal in der .htaccess probiert, mit IfModule mod_rewrite.c RewriteEngine On RewriteCond %{REMOTE_ADDR} =^192\.168\.0\.25$

Re: Bestimmte IP Adressen permanent umleiten.

2005-09-01 Thread Martin Ebert
Thomas, liebe Liste, Dann das selbe in die httpd.conf eingefügt dort hat es keinen Effekt, dann ist alles beim alten. Woraus wir mal vermittels Kristallkugel schlussfolgern, dass ifModule eigentlich meldet, dass das Modul nicht da ist. Was passiert, wenn Du auf ifModule an der Stelle

Re: Bestimmte IP Adressen permanent umleiten.

2005-09-01 Thread Thomas Drebert
Hallo Da passiert leider auch nichts, ich starte natürlich den Server auch nach jeder Änderung der httpd.conf neu. RewriteEngine On RewriteCond %{REMOTE_ADDR} =^192\.168\.0\.25$ RewriteRule ^/.* /keinzugriff.html Vielleicht noch was falsch geschrieben? Die Ip stimmt: 192.168.0.25 - -

Re: Bestimmte IP Adressen permanent umleiten.

2005-09-01 Thread Thomas Drebert
Hallo so funktioniert es: RewriteEngine On RewriteCond %{REMOTE_ADDR} ^192.168.0.25 RewriteRule ^/.* /keinzugriff.html MfG Thomas users-de@httpd.apache.org schrieb am 01.09.05 23:12:39: Thomas, liebe Liste, Dann das selbe in die httpd.conf eingefügt dort hat es keinen Effekt, dann

Re: Bestimmte IP Adressen permanent umleiten.

2005-09-01 Thread Bjoern Hoehrmann
* Thomas Drebert wrote: so funktioniert es: RewriteEngine On RewriteCond %{REMOTE_ADDR} ^192.168.0.25 RewriteRule ^/.* /keinzugriff.html Natürlich sollte man das [forbidden] Flgag benutzen und keinzugriff.html als ErrorDocument realisieren (oder dafür sorgen, dass das .html Dokument für den

RE: [EMAIL PROTECTED] Apache non-start on Solaris

2005-09-01 Thread Axel-Stéphane SMORGRAV
- No core file - pid file is created (but no process with this pid exists once command prompt returns) Sound to me like it crashes. (SIGSEGV/SIGBUS ...) On Solaris you need to enable core dumps using coreadm. I think that's the case even in Solaris 7. -ascs

[EMAIL PROTECTED] how can i rewrite webmail.mydomain.com to mydomain.com:32000

2005-09-01 Thread tvlgiao
hi all, i want to configure my apache2 server rewrite webmail.mydomain.com to mydomain.com:32000 (but not redirect), how can i do it? i also read an article URL Rewriting Guide on http://apache.org, but did not give me any idea, thanks for all advices. best regards, Giao L. Trinh

RE: [EMAIL PROTECTED] how to harmonize the squid reverse proxy and the apache log .

2005-09-01 Thread Boyle Owen
-Original Message- From: huang mingyou [mailto:[EMAIL PROTECTED] Sent: Donnerstag, 1. September 2005 11:26 To: users@httpd.apache.org Subject: [EMAIL PROTECTED] how to harmonize the squid reverse proxy and the apache log . hello,list. Ours web server behind on some

[EMAIL PROTECTED] mod_ssl for Apache 2.0.48 on Windows XP

2005-09-01 Thread Ivanov A.A.
Hello all. I'l write on russian Привет всем еще раз. Может кто ответит на русском понятно. Я не спец по Apache, только начинаю, но есть вопрос, знает ли кто, где найти mod_ssl под Apache 2.0.48 или новее для установки по Windows XP. Все дистрибутивы, находящиеся на официальном сайте только под

[EMAIL PROTECTED] Apache X-Forwarded-For

2005-09-01 Thread Sander Smeenk
Hello, I'd like to hear from people if they have experience in tracking how many users are 'hidden' behind proxies that visit their site. How can I find out how many there are? From what I know all well-behaving proxies should add a X-Forwarded-For header with the real IP address of the client

Re: [EMAIL PROTECTED] how to harmonize the squid reverse proxy and the apache log .

2005-09-01 Thread huang mingyou
now,my logformat is like the following,and the squid send a X-Forwarded-For header,this is the snort dump package info.but in my log file ,can't get real ip?I only reload the httpd. how can I do? 75 69 64 2F 32 2E 35 2E 53 54 41 42 4C 45 31 30 uid/2.5.STABLE10

Re: [EMAIL PROTECTED] how to harmonize the squid reverse proxy and the apache log .

2005-09-01 Thread huang mingyou
oh,I change the %{'X-Forwarded-For'}i to %{X-Forwarded-For}i .now can work correct. 2005/9/1, huang mingyou [EMAIL PROTECTED]: now,my logformat is like the following,and the squid send a X-Forwarded-For header,this is the snort dump package info.but in my log file ,can't get real ip?I only

Re: [EMAIL PROTECTED] how can i rewrite webmail.mydomain.com to mydomain.com:32000

2005-09-01 Thread Joshua Slive
On 9/1/05, tvlgiao [EMAIL PROTECTED] wrote: hi all, i want to configure my apache2 server rewrite webmail.mydomain.com to mydomain.com:32000 (but not redirect), how can i do it? i also read an article URL Rewriting Guide on http://apache.org, but did not give me any idea, thanks for

[EMAIL PROTECTED] how to run a root programme from apache server

2005-09-01 Thread Arun Naik
Hi, I have to run a program from apache server, whose owner is root. As apache server runs from user apache, it is not able to run the program ( owned by root). Is there any way out ? TIA -Arun *** FSS-Private *** DISCLAIMER: This message is

Re: [EMAIL PROTECTED] how to run a root programme from apache server

2005-09-01 Thread Scott Gifford
Arun Naik [EMAIL PROTECTED] writes: Hi, I have to run a program from apache server, whose owner is root. As apache server runs from user apache, it is not able to run the program ( owned by root). Is there any way out ? Change the permissions on the file so Apache has permission to run it,

[EMAIL PROTECTED] Win32DisableAcceptEx

2005-09-01 Thread Grønn Demon
Hello, I have both OpenSSH (using the Cygwin port from sshwindows.sf.net) and Apache 2.0.52 installed on my Windows XP SP2 system and don't use them very frequently (I guess a new Apache version's already been released). Anyway, after some time I wanted to login to my box using SSH again,

Re: [EMAIL PROTECTED] how to run a root programme from apache server

2005-09-01 Thread Anatoly Pugachev
On Thu, Sep 01, 2005 at 11:02:31AM -0400, Scott Gifford wrote: | Arun Naik [EMAIL PROTECTED] writes: | | Hi, | I have to run a program from apache server, whose owner is root. As apache | server runs from user apache, it is not able to run the program ( owned by | root). Is there any way out

[EMAIL PROTECTED] Need help tuning....

2005-09-01 Thread Negiz, Nuray
Please let me know apache is very slow page loding,, what is best kernel tuning for apache Please advice, Thank you very much -Original Message- From: Anatoly Pugachev [mailto:[EMAIL PROTECTED] Sent: Thursday, September 01, 2005 8:14 AM To: users@httpd.apache.org Subject: Re: [EMAIL

RE: [cli-users] System.OutOfMemoryException

2005-09-01 Thread Luis Fco. Ramirez Daza Glez.
Hi Bill I've downloaded the latest version from: http://httpd.apache.org/dev/dist/ It is version 2.0.0.2002 That is the same version I already have, and the memory leak is still there. Heino said that the memory problem is already marked as solved in the bug list. Is this true? Where will be the

Re: [EMAIL PROTECTED] Apache 2.0.54 Hangs On Windows XP Installation

2005-09-01 Thread William A. Rowe, Jr.
http://www.apache.org/dist/httpd/binaries/win32/TROUBLESHOOTING.html Please review; without a log it's not an issue that sounds familiar. You also don't mention if this is XP home or pro? and service pack lvl? Gavin D Ziegler wrote: Hi, I'm trying to install

Re: [EMAIL PROTECTED] how to run a root programme from apache server

2005-09-01 Thread Scott Gifford
Anatoly Pugachev [EMAIL PROTECTED] writes: On Thu, Sep 01, 2005 at 11:02:31AM -0400, Scott Gifford wrote: | Arun Naik [EMAIL PROTECTED] writes: | | Hi, | I have to run a program from apache server, whose owner is root. As apache | server runs from user apache, it is not able to run the

RE: [EMAIL PROTECTED] Question about alias

2005-09-01 Thread Williams, Dewey
What if you want to move, or delete, a user? Then you must figure out which images belong to that user and move/delete them. If the user uses FTP to upload files, s/he will not be able to load image files in the proper place unless you give them FTP access to the /images/ folder, which also

[EMAIL PROTECTED] Re: Apache non-start on Solaris

2005-09-01 Thread Joost de Heer
paul buttemer said: Hello all (my first message), I am unable to start Apache successfully - the httpd process starts, but immediately disappears with no relevant error diagnostic. Are you using _default_ in your vhost definitions? Solaris httpd will crash with it, at least in Solaris 9 and

Re: [EMAIL PROTECTED] Win32DisableAcceptEx

2005-09-01 Thread William A. Rowe, Jr.
Grønn Demon wrote: Hello, I have both OpenSSH (using the Cygwin port from sshwindows.sf.net) and Apache 2.0.52 installed on my Windows XP SP2 system and don't use them very frequently (I guess a new Apache version's already been released). That's ok - .54 hasn't changed much in this respect

RE: [cli-users] System.OutOfMemoryException

2005-09-01 Thread Pull, Heino
This is great news. We are going into production with mod_aspdotnet and I have to use the MTA/STA fix to have a stable application. Otherswise our application leaks like crazy and brings down the server. Our Air Force customer knows about this module and will be likely to download the latest

[EMAIL PROTECTED] Mod_auth_ldap and Novell e-dir

2005-09-01 Thread Craig L. Ching
Hi, I'm trying to build an apache (2.0.54 on SunOS 7) that will be able to interface with Novell e-Directory to authenticate users using mod_auth_ldap. I have a build that works using the OpenLDAP libraries and normal ldap://, but when we try to do the same thing using ldaps://, I get errors

[EMAIL PROTECTED] Apache won't run on XP

2005-09-01 Thread Rick Dettwyler
Hi everyone, This is silly but I cant get apache to run. I downloaded the MSI of latest release and installed on XP Pro. Setup was unable to add apache as a service and I get this when I try it manually: C:\Program Files\Apache Group\Apache2\binapache -k install (OS 10048)Only

RE: [EMAIL PROTECTED] mod_ssl for Apache 2.0.48 on Windows XP

2005-09-01 Thread Michael Louie Loria
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 I have tested Apache + mod SSL and it works fine. You need to download the windows version of OpenSSL to generate the certificates. Michael Louie Loria -BEGIN PGP SIGNATURE- Comment: Public Key: