Re: [EMAIL PROTECTED] mode_rewrite hostnames and wikiwords

2008-01-07 Thread Mike Cardwell
Dragon wrote: hit a snag how would I expand this rule to capture and convert the following? your.host.name - YourHostName (works with rule) YOUR.HOST.NAME - YourHostName (currently not handled) Yo-ur.HOST.name - YourHostName (currently not handled) effectively the spec would be to take

[EMAIL PROTECTED] Reverse Proxy to SSL web server: configuration example

2008-01-07 Thread Zvi Kave
Dear friends, I am trying to find the configuration for a Reverse Proxy server which has to work with a SSL / non-SSL web server. Can someone send me full httpd.conf example for such thing? I need something with probably 2 Virtual hosts for ports 80 / 443. I hope that I have not to deal with the

Re: [EMAIL PROTECTED] mode_rewrite hostnames and wikiwords

2008-01-07 Thread Mike Cardwell
Mike Cardwell wrote: how would I expand this rule to capture and convert the following? your.host.name - YourHostName (works with rule) YOUR.HOST.NAME - YourHostName (currently not handled) Yo-ur.HOST.name - YourHostName (currently not handled) effectively the spec would be to take /doc/FQDN

Re: [EMAIL PROTECTED] Will Apache still work with Windows SP1?

2008-01-07 Thread Norman Peelman
Nir Ofek wrote: Hi there, Thanks for anyone who might be willing and able to help me (me = a total Apache novice) with this question. The Apache documentation states http://apache.mirror.testserver.li/httpd/binaries/win32/README.html that for running Apache HTTP for windows XP, I should

Re: [EMAIL PROTECTED] mode_rewrite hostnames and wikiwords

2008-01-07 Thread Phil Wild
Hi Mike, Thanks I will give it a go. On the suggestion of external code, I was going to use the below #!/usr/bin/perl -w while (STDIN) { s/([a-zA-Z0-9]+)/\u\L$1/g; s/[^a-zA-Z0-9\n]//g; print; } but I like the idea of doing it all in the apache config over using the above. Many

[EMAIL PROTECTED] Re: TCP packets lost?

2008-01-07 Thread Max Deineko
Moved to gmane.linux.openvz.user - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e-mail: [EMAIL PROTECTED] from

[EMAIL PROTECTED] Help with Caching Proxy with Ubuntu and Apach 2.2

2008-01-07 Thread theseeder
Hi I have been using Ubuntu at home and also on a test server at work for approx 6 months, I have successfully set up a SAMBA server and recently set myself the task of creating a Caching Proxy. I 1st tried using apache 1.3 which i didn't have great success with therefore decided to remove

RE: [EMAIL PROTECTED] Help with Caching Proxy with Ubuntu and Apach 2.2

2008-01-07 Thread Axel-Stephane SMORGRAV
Every thing goes into either httpd.conf or some file included from httpd.conf. The general configuration I use is as follows: IfModule mod_cache.c CacheIgnoreHeaders Set-Cookie CacheIgnoreCacheControl Off CacheIgnoreNoLastMod Off IfModule version_module

RE: [EMAIL PROTECTED] Reverse Proxy to SSL web server: configuration example

2008-01-07 Thread Axel-Stephane SMORGRAV
If you add the config below to a vanilla httpd.conf, you'll be pretty close to what you are looking for. Just replace the tokens %%TOKEN%% with whatever value you want. Listen %%svcb_HTTP_ADDR%%:%%HTTP_PORT%% Listen %%svcb_HTTP_ADDR%%:%%HTTPS_PORT%% VirtualHost

RE: [EMAIL PROTECTED] Re: Reverse Proxy to SSL web server: configuration example

2008-01-07 Thread Axel-Stephane SMORGRAV
Definitely yes. -ascs -Message d'origine- De : news [mailto:[EMAIL PROTECTED] De la part de Zvi Kave Envoyé : lundi 7 janvier 2008 15:02 À : users@httpd.apache.org Objet : [EMAIL PROTECTED] Re: Reverse Proxy to SSL web server: configuration example Do you mean, that I must copy the

[EMAIL PROTECTED] Re: Re: Reverse Proxy to SSL web server: configuration example

2008-01-07 Thread Zvi Kave
Axel, You are right. The only one thing I have to add to your configuration was (in both virtual servers): ProxyPass / https://my_web_server.com/ ProxyPassReverse / https://my_web_server.com/ Thanks, Zvi Axel-Stephane SMORGRAV [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]

[EMAIL PROTECTED] Re: Re: Reverse Proxy to SSL web server: configuration example

2008-01-07 Thread Zvi Kave
Axel, To complete all the parameters, I saw that directive SSLProxyEngine On is needed as well.(It was hiding there from previous test) So to make it clear, here are the successfull directives: (The SSL key/crt files are copied from the web server) VirtualHost *:80 ServerAdmin [EMAIL

RE: [EMAIL PROTECTED] Re: Re: Reverse Proxy to SSL web server: configuration example

2008-01-07 Thread Axel-Stephane SMORGRAV
You need SSLProxyEngine On ONLY if you intend to proxy to a SSL-enabled server as seems to be your case. However if your reverse proxy takes care of SSL termination, encrypting the backend connection may not be very useful. -ascs -Message d'origine- De : news [mailto:[EMAIL

Re: [EMAIL PROTECTED] Where can I find a tutorial for writing apache 2.0.x modules

2008-01-07 Thread Dragon
Campbell, Lance wrote: I am looking for a web tutorial for writing apache 2.0.x modules. Does anyone have a reference they could give me? End original message. - Perhaps this is a good place to start: http://modules.apache.org/reference It didn't take

Re: [EMAIL PROTECTED] Would like to understand this weird url request

2008-01-07 Thread Joshua Slive
On Jan 7, 2008 12:23 AM, Sander Temme [EMAIL PROTECTED] wrote: On Jan 6, 2008, at 9:07 PM, Robinson Craig wrote: http://www.nrw.qld.gov.au/vegetation/index.html/templates/headline_temp . php I get the weirdest thingI actually get a response as if what I was really requesting

Re: [EMAIL PROTECTED] mod_disk_cache

2008-01-07 Thread Joshua Slive
On Jan 7, 2008 12:59 AM, Campbell, Lance [EMAIL PROTECTED] wrote: httpd-2.0.59 Does mod_disk_cache support a mechanism that one can request a particular URL to have its content refreshed? Sure, if you send the appropriate Cache-Control headers on your request, you should force mod_cache

RE: [EMAIL PROTECTED] mod_disk_cache

2008-01-07 Thread Campbell, Lance
Joshua, I don't understand what you are saying. Is there some command parameter you can send to htcacheclean or is there a special way of formatting the requested cached URL that will cause it to be refreshed? Since I am caching Tomcat dynamic content I use the following parameters when setting

Re: [EMAIL PROTECTED] mod_disk_cache

2008-01-07 Thread Joshua Slive
On Jan 7, 2008 12:12 PM, Campbell, Lance [EMAIL PROTECTED] wrote: Joshua, I don't understand what you are saying. Is there some command parameter you can send to htcacheclean or is there a special way of formatting the requested cached URL that will cause it to be refreshed? Just make an

Re: [EMAIL PROTECTED] Will Apache still work with Windows SP1?

2008-01-07 Thread William A. Rowe, Jr.
Norman Peelman wrote: Thanks for anyone who might be willing and able to help me (me = a total Apache novice) with this question. The Apache documentation states http://apache.mirror.testserver.li/httpd/binaries/win32/README.html that for running Apache HTTP for windows XP, I should

RE: [EMAIL PROTECTED] mod_disk_cache

2008-01-07 Thread Campbell, Lance
It works! Thanks! They really need to add that to the apache documentation. Lance Campbell Project Manager/Software Architect Web Services at Public Affairs University of Illinois 217.333.0382 http://webservices.uiuc.edu -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: [EMAIL PROTECTED] mod_disk_cache

2008-01-07 Thread Joshua Slive
On Jan 7, 2008 1:31 PM, Campbell, Lance [EMAIL PROTECTED] wrote: It works! Thanks! They really need to add that to the apache documentation. There's a lot of stuff about mod_cache that is not explicitly documented. This is because mod_cache is supposed to be a fairly strict implementation of

Re: [EMAIL PROTECTED] DBDmysql connecting but not authenticating

2008-01-07 Thread paredes
Hi Tom! Thanks for the pointers. After much systematic experimenting I discovered that when I entered users passwords with the mysql command line using password(), encrypt(), sha1() or old_password, only encrypt() was readable by apache authentication. Then I entered users and passwords

Re: [EMAIL PROTECTED] Configuring ssl on apache 2 and Leopard 10.5.1

2008-01-07 Thread Ben assis
Ok William, I know that I can use a firewall but I didn't activate it.Thanks 2008/1/6, William A. Rowe, Jr. [EMAIL PROTECTED]: Ben assis wrote: As my ISP is blocking ports 80 and 443, I was using ports 8080 and 8083 under Tiger. Under Leopard, as I could not set my server to work with

Re: [EMAIL PROTECTED] DBDmysql connecting but not authenticating

2008-01-07 Thread Tom Donovan
paredes wrote: Hi Tom! I discovered that when I entered users passwords with the mysql command line using password(), encrypt(), sha1() or old_password, only encrypt() was readable by apache authentication. Then I entered users and passwords using apache's htpasswd to generate md5 sha1

[EMAIL PROTECTED] How to configure httpd process time

2008-01-07 Thread Lahiru Gunathilake
I'm using httpd with Apache axis2c.there's a problem with some of httpd processes when i'm keep on sending requests to the server for two or three days.I have figure out that there are some httpd processes which takes lot of memory and keep on that memory when we are not sending requests to the

RE: [EMAIL PROTECTED] How to configure httpd process time

2008-01-07 Thread Boyle Owen
-Original Message- From: Lahiru Gunathilake [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 08, 2008 7:08 AM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] How to configure httpd process time I'm using httpd with Apache axis2c.there's a problem with some of httpd