Re: Re: Sporatische unerklaerbare 403 Fehler [solved]

2007-12-10 Thread Karl007
Hallo Paul. Ist das ein lokaler Server oder liegt der bei einem Hoster? Welches Betriebssystem? Welcher Apache? Welches TYP03 (+PHP)? Warum PHP per Fast-CGI und nicht per Modul? FastCGI = Bessere Aufteilung der Rechte, spezielle php.ini fuer einzelne Domains und divisile Priorisierung

Re: [EMAIL PROTECTED] Please help - confused about reverse proxy

2007-12-10 Thread Staf Wagemakers
On Dec 10, 2007 8:57 AM, Phil Wild [EMAIL PROTECTED] wrote: I am trying to setup a reverse proxy. I have followed a few of the guides and it has worked a charm but now I am trying to dom something a little different. I have an apache2 website with all the right modules loaded for reverse

[EMAIL PROTECTED] plain HTTP to an SSL-enabled server port

2007-12-10 Thread Thomas Antony
Hi, I bought a Thawte certificate and configured that in Apache 2.2 with a IP based virtual host. SSL is working fine but everytime i open the site with http:// i get this error message displayed: Bad Request Your browser sent a request that this server could not understand. Reason: You're

RE: [EMAIL PROTECTED] plain HTTP to an SSL-enabled server port

2007-12-10 Thread Axel-Stephane SMORGRAV
You need to create 2 virtual hosts: one for port 80 where SSL is NOT enabled, and one on port 443 where SSL is enabled. You will also need two Listen directives: one for each of ports 80 and 443. Listen *:80 Listen *:443 VirtualHost *:443 ServerName my.server.com:443

[EMAIL PROTECTED] how does the apache cycle treat POST request

2007-12-10 Thread Oteng Michael Raesima
hi I would like to know how the POST request is treated by the Apache life cycle. I think the cycle clearly demonstrates a GET request where by a resource is located onn the web server or a redirection etc but i am not lear how the POST or PUT is treated. Thank you OM Raesima

Re: [EMAIL PROTECTED] plain HTTP to an SSL-enabled server port

2007-12-10 Thread Thomas Antony
Hi, This works. Is there a technical reason why i need 2 virtual hosts instead of one? Is it safe that both virtual hosts share the same log files? You need to create 2 virtual hosts: one for port 80 where SSL is NOT enabled, and one on port 443 where SSL is enabled. You will also need two

[EMAIL PROTECTED] Apache mod_rewrite/mod_proxy conflict?

2007-12-10 Thread Tamer Embaby
Dear all, I have the following simple setup: [1] LoadModule rewrite_module modules/mod_rewrite.so [2] LoadModule proxy_module modules/mod_proxy.so [3] LoadModule proxy_http_module modules/mod_proxy_http.so [4] RewriteEngine on [5] ProxyPass /testing http://myserverB/ [6] ProxyPassReverse

Re: [EMAIL PROTECTED] Please help - confused about reverse proxy

2007-12-10 Thread Phil Wild
Thanks I got it working real simple actually. I put my first attempt in the proxy.conf file but it was conflicting with entries from another virtual host. Once I separated all the entries out to the virtual host config files everything worked a treat. Cheers Phil On 10/12/2007, Staf Wagemakers

Re: [EMAIL PROTECTED] Apache mod_rewrite/mod_proxy conflict?

2007-12-10 Thread Neil A. Hillard
Tamer Embaby wrote: I have the following simple setup: [1] LoadModule rewrite_module modules/mod_rewrite.so [2] LoadModule proxy_module modules/mod_proxy.so [3] LoadModule proxy_http_module modules/mod_proxy_http.so [4] RewriteEngine on [5] ProxyPass /testing http://myserverB/ [6]

RE: [EMAIL PROTECTED] plain HTTP to an SSL-enabled server port

2007-12-10 Thread Axel-Stephane SMORGRAV
Strictly speaking you are right about not needing two virtual hosts. One virtual host would be sufficient e.g. for the SSL stuff. Although there may not be any technical reason that requires it, I personally like to do things with virtual hosts rather than at the server config level. I

[EMAIL PROTECTED] Enquiry about Reserve Proxy

2007-12-10 Thread pdt_p
Hi I have setup a reserve proxy in my working environment. I use Apache 2.2.6 and mod_proxy_html 3.0.0. I run this on windows xp. I do have a webserver running on difference subnet. I try to put the reserve proxy for that webserver(the one on difference subnet). I have follow the tutorial

RE: [EMAIL PROTECTED] Enquiry about Reserve Proxy

2007-12-10 Thread Axel-Stephane SMORGRAV
AS far as I can tell from the looks of your configuration, you are pretty much on top of things. What you need to do is investigate the cause for the missing resources, for example by looking at the access- and errorlogs to see what URLs are requested that return a HTTP 404. There may be URLs

RE: [EMAIL PROTECTED] plain HTTP to an SSL-enabled server port

2007-12-10 Thread Boyle Owen
-Original Message- From: Thomas Antony [mailto:[EMAIL PROTECTED] Sent: Monday, December 10, 2007 12:30 PM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] plain HTTP to an SSL-enabled server port Hi, This works. Is there a technical reason why i need 2 virtual hosts

Re: [EMAIL PROTECTED] Invalid URI in request

2007-12-10 Thread Arnab Ganguly
Hi ALL, Thanks for the update, I have tried the below procedure, but it gives me Invalid method in request and not Invalid URI in request.How do I simulate the later. Thanks in advance. Regards -A On Dec 6, 2007 11:30 PM, Krist van Besien [EMAIL PROTECTED] wrote: On Dec 5, 2007 3:37 PM, Arnab

Re: [EMAIL PROTECTED] plain HTTP to an SSL-enabled server port

2007-12-10 Thread Thomas Antony
Because HTTPS and HTTP are two different protocols. HTTPS is a protocol that encapsulates HTTP. That is, when you type in an HTTPS URL in a browser, it first tries to establish an SSL-session with the server's mod_ssl engine. Once that's up, the browser and server then use HTTP in the normal

RE: [EMAIL PROTECTED] Apache mod_rewrite/mod_proxy conflict?

2007-12-10 Thread Tamer Embaby
Neil, Thanks for the answer, I will do that. But still I want to understand the behavior of both modules, who get called first? Where can I read about this? Thanks for your time. Tamer -Original Message- From: Neil A. Hillard [mailto:[EMAIL PROTECTED] Sent: Monday, December 10, 2007

Re: [EMAIL PROTECTED] How to make a website like ftpsite?

2007-12-10 Thread Matus UHLAR - fantomas
On 30.11.07 18:21, goommy wrote: What my mean is not mod_ftp !! It's just a experiment to study apache ! please use less exclamation marks... What i want to do is make a website like ftpsite??after open the URL i can see the file list and i can download all files! ...and wrap your lines

Re: [EMAIL PROTECTED] how does the apache cycle treat POST request

2007-12-10 Thread Joshua Slive
On Dec 10, 2007 5:41 AM, Oteng Michael Raesima [EMAIL PROTECTED] wrote: hi I would like to know how the POST request is treated by the Apache life cycle. I think the cycle clearly demonstrates a GET request where by a resource is located onn the web server or a redirection etc but i am not

RE: [EMAIL PROTECTED] Apache mod_rewrite/mod_proxy conflict?

2007-12-10 Thread Axel-Stephane SMORGRAV
Judging from your problem description, specifically the fact that modifying the ordering of the LoadModule directives changes the behaviour of the server, you must be using Apache 1.3. From Apache 2.0 on the order of execution of the various hooks is independent of the order of LoadModule

RE: RE: [EMAIL PROTECTED] Apache mod_rewrite/mod_proxy conflict?

2007-12-10 Thread Tamer Embaby
Axel, It's totally my mistake! I didn't mention anything about the environment! (I'm hitting my head against the wall for 12+ hours daily for managing Vignette CMS). So please forgive me about this. No it's Apache 2.0.61 (latest) on Solaris 10 U4, and also Linux RHEL 4.4. The solution that

Re: [EMAIL PROTECTED] Apache, Tomcat and mod_proxy

2007-12-10 Thread Ângelo Vimeney
Gabriel, when I use the mod_jk everything works fine. The problem arises when using the mod_proxy, so the JkOptions directive can't be used to solve it. However, I thank you for your attention. Ângelo On Dec 7, 2007 12:10 PM, [EMAIL PROTECTED] wrote: Hi, Do you have a firewall between apache

Re: [EMAIL PROTECTED] Apache, Tomcat and mod_proxy

2007-12-10 Thread Ângelo Vimeney
Hi, Thanks for your analysis, Karel. I'll try a larger timeout (60 seconds was used in my unsuccessfully last test). However, recently I put 300 browsers to access Apache connect to Tomcat using mod_jk without any problem. Unfortunately, I suspect this could be a bug with mod_proxy... Ângelo On

[EMAIL PROTECTED] LimitInternalRecursion

2007-12-10 Thread Chris Arnold
In apache 2.2.3 on linux, i am getting a boat load of; [Fri Nov 30 16:06:14 2007] [error] [client x] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.

Re: [EMAIL PROTECTED] LimitInternalRecursion

2007-12-10 Thread Joshua Slive
On Dec 10, 2007 3:34 PM, Chris Arnold [EMAIL PROTECTED] wrote: In apache 2.2.3 on linux, i am getting a boat load of; [Fri Nov 30 16:06:14 2007] [error] [client x] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase

Re: [EMAIL PROTECTED] LimitInternalRecursion

2007-12-10 Thread Chris Arnold
On Dec 10, 2007 3:34 PM, Chris Arnold [EMAIL PROTECTED] wrote: In apache 2.2.3 on linux, i am getting a boat load of; [Fri Nov 30 16:06:14 2007] [error] [client x] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase

Re: [EMAIL PROTECTED] LimitInternalRecursion

2007-12-10 Thread Joshua Slive
On Dec 10, 2007 4:29 PM, Chris Arnold [EMAIL PROTECTED] wrote: On Dec 10, 2007 3:34 PM, Chris Arnold [EMAIL PROTECTED] wrote: In apache 2.2.3 on linux, i am getting a boat load of; [Fri Nov 30 16:06:14 2007] [error] [client x] Request exceeded the limit of 10 internal redirects due to

[EMAIL PROTECTED] Named Virtual Hosts on Apache on OS X 10.5 -Apache 2

2007-12-10 Thread Bob Hartung
Hi all, I am new to Os X adn Apache. I have httpd running and would like to establish virtual hosts on my laptop for testing/learning. I have done the following for virtual hosts main and alternate Added to /etc/hosts: 127.0.0.1main.localhost 127.0.0.1alternate.localhost Original

Re: [EMAIL PROTECTED] LimitInternalRecursion

2007-12-10 Thread Chris Arnold
On Dec 10, 2007 4:29 PM, Chris Arnold [EMAIL PROTECTED] wrote: On Dec 10, 2007 3:34 PM, Chris Arnold [EMAIL PROTECTED] wrote: In apache 2.2.3 on linux, i am getting a boat load of; [Fri Nov 30 16:06:14 2007] [error] [client x] Request exceeded the limit of 10 internal redirects due to

Re: [EMAIL PROTECTED] Named Virtual Hosts on Apache on OS X 10.5 -Apache 2

2007-12-10 Thread Vincent Bray
On 11/12/2007, Bob Hartung [EMAIL PROTECTED] wrote: Hi all, Hi, 127.0.0.1main.localhost 127.0.0.1alternate.localhost That's fine. You can combine them in a single line too, so 127.0.0.1 main.local alt.local Original htdocs known as Documents was in /Library/WebServer/ I have

RE: [EMAIL PROTECTED] Enquiry about Reserve Proxy

2007-12-10 Thread pdt_p
Hi... I have set ProxyHTMLExtended On but seems like the problem still occur. I set LogLevel to debug and ProxyHTMLLogVerbose On, the image that my browser request is return HTTP code 200. this is the access log file: 127.0.0.1 - - [11/Dec/2007:10:21:36 +1100] GET / HTTP/1.1 200 3026 127.0.0.1 -

[EMAIL PROTECTED] How can

2007-12-10 Thread Desai Sunil Kumar
Is it possible to link libgcc statically to libaprutil-1.so and libapr-1.so rather than dynamically. Please let me know how to do it? Thanks Sunil Desai DISCLAIMER: This message (including attachment if any) is confidential and may be privileged. If you have received this message by

Re: [EMAIL PROTECTED] Apache mod_rewrite/mod_proxy conflict?

2007-12-10 Thread Axel-Stephane SMORGRAV
As I said in my previous post, the suggestion of Neil will work no matter what. No doubt about that. What surprises me is that you mention that changing the order of the LoadModule directives actually changes the order in which the modules are executed. That does not make sense unless you are

RE: [EMAIL PROTECTED] Enquiry about Reserve Proxy

2007-12-10 Thread Axel-Stephane SMORGRAV
The logs you sent show that every thing works perfectly. The access log shows two requests both returning HTTP 200 OK. The debug log shows that your RP connects to the content server and returns a body. Do you happen to have any entry in your access log indicating that a HTTP 404 File not

Re: [EMAIL PROTECTED] How to make a website like ftpsite?

2007-12-10 Thread solprovider
On 12/10/07, Matus UHLAR - fantomas [EMAIL PROTECTED] wrote: On 30.11.07 18:21, goommy wrote: What i want to do is make a website like ftpsite??after open the URL i can see the file list and i can download all files! First.i use Options Indexes and DirectoryIndex none list the all file!