Re: [us...@httpd] Setting Up Virtual Host Help Needed on WinXP

2010-06-03 Thread Lester Caine
Chris Montgomery wrote: Well, not quite there yet. As I said in my other msg, I was able to successfully hit http://myapps/index.html and get my dummy page to come up after adding "myapps" to my hosts file and adding a Directory entry in httpd.conf (I was getting a Access Forbidden before that):

Re: [us...@httpd] Recording X-Forwarded-For header in HTTP request

2010-06-03 Thread Tapas Mishra
Actually I am able to get the X-Forwarded-For fields on servers which are running Ubuntu and I have done same configuration on them. In CentOS I am not able to get them.With same configuration. On Thu, Jun 3, 2010 at 11:08 PM, Emmanuel Bailleul wrote: >> -Message d'origine- >> De : Tapas

[us...@httpd] mod_deflate with LZSS algorithm

2010-06-03 Thread PIPIT isnatia
Hi,,, i'm newbie here.. if I want to modify mod_deflate using LZSS algorithms, where do I need to change about this code. should i change all of them (code from this link below) or part of them? http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/filters/mod_deflate.c?view=markup please give

[us...@httpd] Mutual Authentication using Multiple CA's in Apache does not work

2010-06-03 Thread Scott Thomas
Bonjour All Users, My setup has a ROOT CA and 3 level of Sub CA's. I have generated apache web server and client certificates from every the ROOT and Sub CA's. I have configured my APACHE web server for client certificate (mutual) authentication. I have generated the apache web server certif

Re: [us...@httpd] caching proxy

2010-06-03 Thread Igor Cicimov
CacheEnable disk / On Wed, Jun 2, 2010 at 7:47 PM, Tapas Mishra wrote: > Hi, > I did try to read apache docs given here. > http://httpd.apache.org/docs/2.2/mod/mod_cache.html#cacheenable > > http://www.google.co.in/search?hl=en&safe=active&q=how+to+set+up+an+apache+caching+proxy&aq=f&aqi=&aql=&o

Re: [us...@httpd] Setting Up Virtual Host Help Needed on WinXP

2010-06-03 Thread Chris Montgomery
Well, not quite there yet. As I said in my other msg, I was able to successfully hit http://myapps/index.html and get my dummy page to come up after adding "myapps" to my hosts file and adding a Directory entry in httpd.conf (I was getting a Access Forbidden before that): Order allow,deny

Re: [us...@httpd] Setting Up Virtual Host Help Needed on WinXP

2010-06-03 Thread Chris Montgomery
Nevermind, got it working! Now on to the next roadblock :) Chris Montgomery said the following on 6/3/2010 4:32 PM: Thanks for the rapid reply, Jorge. I'll add an entry to my hosts file and give it a go. Do I need to reboot windows for that change to take effect? Thanks much. -- Best regar

Re: [us...@httpd] Setting Up Virtual Host Help Needed on WinXP

2010-06-03 Thread Chris Montgomery
Thanks for the rapid reply, Jorge. I'll add an entry to my hosts file and give it a go. Do I need to reboot windows for that change to take effect? Thanks much. Jorge Schrauwen said the following on 6/3/2010 4:28 PM: > Hi, > > If you add a new virtualhost and give it a hostname (in your case >

Re: [us...@httpd] Setting Up Virtual Host Help Needed on WinXP

2010-06-03 Thread Jorge Schrauwen
Hi, If you add a new virtualhost and give it a hostname (in your case "myapps") you're computer must be able to resolve the name to an IP. Most browser will append .com and prepend www. if they can't find one. So you're assumption of needing to add and entry to your hosts file is correct. Kind r

[us...@httpd] mod_disk_cache causing corrupted output on server side includes?

2010-06-03 Thread Geoff Millikan
Dear List, It appears that when mod_disk_cache reads server side includes to create its final cached web page, it sometimes corrupts the included file. I think the issue may be that the included file is getting DEFLATEd and Apache is intermittently forgetting to ungzip it prior to putting it in

[us...@httpd] Setting Up Virtual Host Help Needed on WinXP

2010-06-03 Thread Chris Montgomery
Howdy, I'm new to Apache web server. I have installed Apache 2.2.15 on my Windows development computer to become familiar with using it to run my web sites locally. The live production server will run them on a linux box under Apache, so I want to get used to working with Apache in my develop

RE: [us...@httpd] Betr.: Re: [us...@httpd] Apache Reverse Proxy for Citrix MetaFrame Presentation Server

2010-06-03 Thread Ruiyuan Jiang
Hi, I tested and I got "ssl error code 47" error. It seems to me that Apache wants to terminate any port 443 traffic. The Citrix presentation server does not allow termination of the traffic at port 443. Otherwise Citrix will have an error. Is there a way to let Apache proxy server passing port

[us...@httpd] Rails, fcgid and environment variables

2010-06-03 Thread LeVon Smoker
Is there a way to make environment variables stay set when using mod_fcgid? I have the following section in an apache config: ServerName local.domain DocumentRoot /var/www/myapp/charts RewriteEngine On AuthName "Charts" AuthType Basic AuthBasicProvider

RE: [us...@httpd] Recording X-Forwarded-For header in HTTP request

2010-06-03 Thread Emmanuel Bailleul
> -Message d'origine- > De : Tapas Mishra [mailto:mightydre...@gmail.com] > Envoyé : jeudi 3 juin 2010 16:32 > À : users@httpd.apache.org > Objet : Re: [us...@httpd] Recording X-Forwarded-For header in HTTP request > > On Thu, Jun 3, 2010 at 7:52 PM, Eric Covener wrote: > >> to my surpris

Re: [us...@httpd] Recording X-Forwarded-For header in HTTP request

2010-06-03 Thread Tapas Mishra
On Thu, Jun 3, 2010 at 7:52 PM, Eric Covener wrote: >> to my surprise I did not found any thing in > > If there was no line in the log, then you addded it in an incorrect > vhost. Hmmm I am having a software which is running on web server known as Plone. Can this be problem. have a virtualhost in

Re: [us...@httpd] Recording X-Forwarded-For header in HTTP request

2010-06-03 Thread Eric Covener
> to my surprise I did not found any thing in If there was no line in the log, then you addded it in an incorrect vhost. If there was a line, but no value for x-forwarded-for, maybe it wasn't a request header? You can verify with wireshark. -- Eric Covener cove...@gmail.com ---

[us...@httpd] Recording X-Forwarded-For header in HTTP request

2010-06-03 Thread Tapas Mishra
Hi, I am using a CentOS 5.5 server as a backend for one of my websites.On a Ubuntu Reverse Proxy. After reading documentation [url=http://httpd.apache.org/docs/2.2/mod/mod_log_config.html#formats]Apache Log Format documentation[/url] I added in [code] /etc/httpd/conf/httpd.conf [/code] a Line [c

[us...@httpd] How to allow HTTP/1.1 standart in Apache 2.2

2010-06-03 Thread Petr Hracek
Hello *, do you know somebody how to allow HTTP/1.1 standart which is mentioned in http://httpd.apache.org/docs/2.2/content-negotiation.html#better in subsection Language Negotiation Exceptionslike For example, if a client requests documents with the language en-GB for British English, the server

[us...@httpd] apache returns 301 on PROPFINDing directory

2010-06-03 Thread Marc Patermann
Hi, on one apache server (a) I get a 301 error on PROPFINDing a directory without a tailing "/" on another (b) I do not. Can someone please explain this to me and tell me how I make server a behave like server a (no 301)? Server a: 10.49.9.74 - user [03/Jun/2010:12:15:31 +0200] "PROPFIND /t