Re: [users@httpd] Custom authentication?

2011-01-09 Thread Tig
With some tweaking the following will work: client.srv.com has the file listings, makes an MD5 of the filename plus a salt (random string, lets call it 123456) and writes the MD5 to the disk of client.srv.com as /filename-123456.txt - then makes a request to dload.srv.com as /dl.php/filename/salt

[users@httpd] mod_rewrite

2011-01-09 Thread rangeli nepal
Hello Everybody, I have a very simple problem for which I am using mod_rewrite. I want to remove the certain consecutive path i.e Following is an example http://hostname/alpha/beta/theta/someuseful - http://hostname/prefix/someuseful/ I am using following rule, which works, but induces

Re: [users@httpd] mod_rewrite

2011-01-09 Thread Eric Covener
On Sun, Jan 9, 2011 at 10:27 AM, rangeli nepal rangeli.ne...@gmail.com wrote: Hello Everybody, I have a very simple problem for which I am using mod_rewrite. I want to remove the certain consecutive path i.e Following is an example http://hostname/alpha/beta/theta/someuseful   -

Re: [users@httpd] mod_rewrite

2011-01-09 Thread rangeli nepal
Well I will work on rewrite log. But I am pretty sure it redirects. I am using httpclient ( a java library for client side) and I have to change all the methods that use PostMethod. rn On Sun, Jan 9, 2011 at 11:58 AM, Eric Covener cove...@gmail.com wrote: On Sun, Jan 9, 2011 at 10:27 AM, rangeli

RE: [us...@httpd] SSL Termination at Apache

2011-01-09 Thread Tushar Chavan
Hi , We have below scenario. Internet Users https--Server A--https Apache Server B-http---Server C We want https flow from internet users to Server A , from Server A to Apache server B again https .Then from Apache to Server C So SSL is terminated at Apache Server.

Re: [us...@httpd] SSL Termination at Apache

2011-01-09 Thread Joost de Heer
On 01/09/2011 08:58 PM, Tushar Chavan wrote: Hi , We have below scenario. Internet Users https--Server A--https Apache Server B-http---Server C We want https flow from internet users to Server A , from Server A to Apache server B again https .Then from Apache to

Re: [users@httpd] Changing apache default port 80 creates problem

2011-01-09 Thread Eric Covener
2011/1/9 Γιώργος Κατωποδης yiorgoskatopo...@gmail.com: Hello all, I run ubuntu 10.04.1 on a virtual linode server. When i change the default port 80 to 8081 or 81 (because another application needs to run on the port 80 -nginx-) and then browse my domain name, i must write in the browser

Re: [users@httpd] Changing apache default port 80 creates problem

2011-01-09 Thread Muhammad Nuzaihan Kamal
Use http:// instead of IP address. Example: http://xx.xx.xx.xx:8081 Regards, Muhammad Nuzaihan On Mon, 2011-01-10 at 04:29 +0200, Γιώργος Κατωποδης wrote: Hello all, I run ubuntu 10.04.1 on a virtual linode server. When i change the default port 80 to 8081 or 81 (because another

[users@httpd] Apache process not coming down and going high upto 259

2011-01-09 Thread Amol Puglia
Hello Team, I am facing very weird problem of apache porcess going high upto 259 and increasing again even after restart of backend server ie. tomcat. Apache version :- 2.0.59 Tomcat Version :- 5.5.9 Apache/Tomcat connectivity :- mod_jk when i have checked mod_jk.log file i am seeing this

Re: [us...@httpd] New to list - Redirect, Alias or Rewrite?? Very confused...

2011-01-09 Thread Matus UHLAR - fantomas
On 04.01.11 11:59, d...@aiphone.com wrote: I am attempting to have the Apache Server 2.0 handle the following request for me: When a visitor visits http://mydomain.com/OLD_Web App/, I would like them to be automatically redirected to http://mydomain.com/New_Web App/ Both OLD and NEW Web

Re: [users@httpd] mod_rewrite

2011-01-09 Thread Matus UHLAR - fantomas
On 09.01.11 10:27, rangeli nepal wrote: I have a very simple problem for which I am using mod_rewrite. I want to remove the certain consecutive path i.e Following is an example http://hostname/alpha/beta/theta/someuseful - http://hostname/prefix/someuseful/ I am using following