[us...@httpd] RE: Question about HTTPS without SSL???

2010-03-04 Thread Francisco Javier Morales López de Gamarra
So something like this is not possible? and apache answer ServerName www.mydomain.com CustomLog /var/log/apache2/access.log combined ErrorLog /var/log/apache2/error.log DocumentRoot /var/www/web/portal SSLEngine off # I a

Re: [us...@httpd] I don't want Cache

2010-03-04 Thread Nilesh Govindarajan
On Fri, Mar 5, 2010 at 9:04 AM, Rafael Muneton wrote: > Hello all: > This is my first experience with Apache web server and it's working well, > it's just that I have changed a script and the Web server doesn't reflect > the changes, even when I click the F5 button or Refresh ; I restarted Apache

Re: [us...@httpd] issue in debian lenny.

2010-03-04 Thread Nilesh Govindarajan
On Fri, Mar 5, 2010 at 10:33 AM, J. Bakshi wrote: > On 03/04/2010 05:18 PM, Nilesh Govindarajan wrote: > > On Thu, Mar 4, 2010 at 2:40 PM, Igor Cicimov > > wrote: > > > > See the name of the module in the LoadModule line in the config file > > > >> On Mar 4, 20

Re: [us...@httpd] Cannot upload files from Firefox 2.0 to Apache HTTP proxy server

2010-03-04 Thread Krist van Besien
On Thu, Mar 4, 2010 at 1:22 PM, Baljeet Nijjhar wrote: > Hi > I have tried to upload a Microsoft Excel file to my application server from > Firefox 2.0. The HTTP request goes over SSL to Oracle Apache 2 HTTP server > which is configured to act as a proxy server before passing the request to > my a

Re: [us...@httpd] issue in debian lenny.

2010-03-04 Thread J. Bakshi
On 03/04/2010 05:53 PM, Dan Poirier wrote: > Or just don't use in your own configuration. The only real > reason to use it is in example configurations for other people, where > you don't know if a given module has been loaded. > > If you're configuring your own server, presumably you intend for

Re: [us...@httpd] issue in debian lenny.

2010-03-04 Thread J. Bakshi
On 03/04/2010 05:18 PM, Nilesh Govindarajan wrote: > On Thu, Mar 4, 2010 at 2:40 PM, Igor Cicimov > wrote: > > See the name of the module in the LoadModule line in the config file > >> On Mar 4, 2010 6:16 PM, "J. Bakshi" > > wr

[us...@httpd] I don't want Cache

2010-03-04 Thread Rafael Muneton
Hello  all: This is my first experience with Apache web server and it's working well, it's just that I have changed a script and the Web server doesn't reflect the changes, even when I click the F5 button or Refresh ; I restarted Apache and nothing happens. I wonder what is wrong or what am I mi

Re: [us...@httpd] Question about HTTPS without SSL???

2010-03-04 Thread Eric Covener
> There is a way for to redirect HTTPS before SSL or make any ... for not to > show this "not valid certificate page" to the user? No. -- Eric Covener cove...@gmail.com - The official User-To-User support forum of the Apache H

[us...@httpd] Question about HTTPS without SSL???

2010-03-04 Thread Francisco Javier Morales López de Gamarra
Hello. I am trying to redirect HTTPS connections to HTTP like: https:www.mydomain.com -> http:www.mydomain.com (but I need not to show the invalid certificate page) I simply try: RewriteCond %{HTTP_HOST} ^www.mydomain.com [NC] RewriteRule ^(.*)$ http://www.mydomain.com/$1 [L,R=301] My probl

Re: [us...@httpd] Cannot download files over SSL in Internet Explorer - where is Cache-Control: no-cache header being set?

2010-03-04 Thread Baljeet Nijjhar
Hi i dont think there is anything in front. There is some communication with Oracle WebGate and Oracle Identity and Access Manager but nothing that obviously sets these headers on the response once it leaves the application server. I have tried lots of things: a) set session.cache_limiter = none in

Re: [us...@httpd] Cannot download files over SSL in Internet Explorer - where is Cache-Control: no-cache header being set?

2010-03-04 Thread Philip Wigg
> Sounds strange. Do you have anything else modifying the HTTP response > headers in front of your web servers, for example, a load-balancer? Just in case you have an F5 BIG-IP WebAccelerator, there is a known issue regarding this (needs login):- https://support.f5.com/kb/en-us/solutions/public/9

[us...@httpd] SSL mutual authentication client certificate creation using Keytool

2010-03-04 Thread Arunkumar Janarthanan
Hi All, I have an application connecting to the secure Apache URL, I have generated OpenSSL certificates and used it as CA and servercert, also generated client certificate using hte below documentation. http://www.impetus.us/~rjmooney/projects/misc/clientcertauth.html However my client applicat

Re: [us...@httpd] Cannot download files over SSL in Internet Explorer - where is Cache-Control: no-cache header being set?

2010-03-04 Thread Philip Wigg
On 4 March 2010 12:31, Baljeet Nijjhar wrote: > Hi > I am having trouble downloading files over SSL in Internet Explorer. After > some digging, I believe this is because a Cache-Control: no-cache HTTP > header is being added by my Oracle Apache 2 HTTP proxy server to the > responses sent from my a

Re: [us...@httpd] password protecting a file that has parameters

2010-03-04 Thread Nilesh Govindarajan
On Thu, Mar 4, 2010 at 6:44 PM, Malka Cymbalista < malki.cymbali...@weizmann.ac.il> wrote: > We are running apache 2.2.6 on a Linux maxchine. > > We have the following code in our httpd.conf file > > > AuthUserFile /WWW/httpd/conf/.htpasswd > AuthName "HP2010 Web Site" > AuthType

[us...@httpd] password protecting a file that has parameters

2010-03-04 Thread Malka Cymbalista
We are running apache 2.2.6 on a Linux maxchine. We have the following code in our httpd.conf file AuthUserFile /WWW/httpd/conf/.htpasswd AuthName "HP2010 Web Site" AuthType Basic require user organizer Every time someone goes to http://www1.weizmann.ac.il/Ma

[us...@httpd] Cannot download files over SSL in Internet Explorer - where is Cache-Control: no-cache header being set?

2010-03-04 Thread Baljeet Nijjhar
Hi I am having trouble downloading files over SSL in Internet Explorer. After some digging, I believe this is because a Cache-Control: no-cache HTTP header is being added by my Oracle Apache 2 HTTP proxy server to the responses sent from my application server. This causes the seemingly well-known p

Re: [us...@httpd] issue in debian lenny.

2010-03-04 Thread Dan Poirier
Or just don't use in your own configuration. The only real reason to use it is in example configurations for other people, where you don't know if a given module has been loaded. If you're configuring your own server, presumably you intend for that module to be loaded. Better to have the server

[us...@httpd] Cannot upload files from Firefox 2.0 to Apache HTTP proxy server

2010-03-04 Thread Baljeet Nijjhar
Hi I have tried to upload a Microsoft Excel file to my application server from Firefox 2.0. The HTTP request goes over SSL to Oracle Apache 2 HTTP server which is configured to act as a proxy server before passing the request to my application server. Packet sniffing indicates that the file content

Re: [us...@httpd] issue in debian lenny.

2010-03-04 Thread Nilesh Govindarajan
On Thu, Mar 4, 2010 at 2:40 PM, Igor Cicimov wrote: > See the name of the module in the LoadModule line in the config file > > On Mar 4, 2010 6:16 PM, "J. Bakshi" wrote: > > On 03/04/2010 11:40 AM, Nilesh Govindarajan wrote: > On Thu, Mar 4, 2010 at > 11:12 AM, J. Bakshi > >

Re: [us...@httpd] Reverse proxy with mod_rewrite using RewriteRule [P]

2010-03-04 Thread Philip Wigg
> I don't get it, I must be missing something. Any clue, please? You're possibly in a situation where your rewrite rule is matching against subsequent requests, causing a loop. For example:- 1. You make a request to /something/ which is proxied by your rule to http://www.mysite.es/something/ 2.

Re: [us...@httpd] issue in debian lenny.

2010-03-04 Thread Igor Cicimov
See the name of the module in the LoadModule line in the config file On Mar 4, 2010 6:16 PM, "J. Bakshi" wrote: On 03/04/2010 11:40 AM, Nilesh Govindarajan wrote: > On Thu, Mar 4, 2010 at 11:12 AM, J. Bakshi > wrote: > > Hello list, > > Here in debian lenny the r