Re: [us...@httpd] Options for multiple SSL domains on 1 server

2010-10-04 Thread Krist van Besien
On Fri, Oct 1, 2010 at 11:04 PM, Grant emailgr...@gmail.com wrote: I need to set up SSL certificates for multiple domain names on a single server.  I've done some research and I think these are my options: 1. use multiple IPs drawbacks: requires separate apache2 config for each SSL domain,

Re: [us...@httpd] Apache homepage not coming after deployin application on tomcat

2010-10-04 Thread Darryle Steplight
Have your tried http://webserver_name ( notice the http:// ) Instead of http:\\webserver_name .. What error message are you seeing? On Mon, Oct 4, 2010 at 9:58 AM, Matus UHLAR - fantomas uh...@fantomas.skwrote: On 28.09.10 04:03, Amol Puglia wrote: I would like to know how to get

Re: [us...@httpd] Pre compressed css and javascript

2010-10-04 Thread Ben Short
Hi Eric, I have the DocumentRoot in my vhost. Sorry I omitted some of the configuration. Ben On 4 October 2010 14:55, Eric Covener cove...@gmail.com wrote: RewriteCond %{REQUEST_FILENAME}.gz -f in vhost context, you have to add the document root in yourself, since the request hasn't

Re: [us...@httpd] Apache homepage not coming after deployin application on tomcat

2010-10-04 Thread Matus UHLAR - fantomas
On 28.09.10 04:03, Amol Puglia wrote: I would like to know how to get apache home page. the home page is a bit misleading. I have set htdocs as my document root in my apache web server. When i am accessing url http:\\webserver_name/index.html. I am not getting page. Have you tried

Re: [us...@httpd] Pre compressed css and javascript

2010-10-04 Thread Eric Covener
RewriteCond %{REQUEST_FILENAME}.gz -f in vhost context, you have to add the document root in yourself, since the request hasn't actually been mapped to a file yet. - The official User-To-User support forum of the Apache HTTP

[users@httpd] Pre compressed css and javascript

2010-10-04 Thread Ben Short
Hi, I have configured my httpd instance to serve pre-compressed css and java script. But I have two issues. My httpd configuration is as follows. RewriteEngine On RewriteLog logs/rewrite.log RewriteLogLevel 5 AddEncoding gzip .gz RewriteCond %{HTTP:Accept-encoding} gzip RewriteCond

Re: [us...@httpd] Pre compressed css and javascript

2010-10-04 Thread Eric Covener
On Mon, Oct 4, 2010 at 10:07 AM, Ben Short b...@benshort.co.uk wrote: Hi Eric, I have the DocumentRoot in my vhost. Sorry I omitted some of the configuration. I meant on the RewriteCond itself. REQUEST_FILENAME is just the URI unless your rules are in directory or .htaccess, because the

Re: [us...@httpd] Pre compressed css and javascript

2010-10-04 Thread Ben Short
Eric, Ah I see what you mean changing RewriteCond %{REQUEST_FILENAME}.gz -f to RewriteCond /usr/local/apache2/docs/www.journeycheck.southwesttrains.co.uk/%{REQUEST_FILENAME}.gz -f works. Thank you Ben On 4 October 2010 15:26, Eric Covener cove...@gmail.com wrote: On Mon, Oct 4, 2010 at

[us...@httpd] svn through Apache httpd: incorrect commit authors

2010-10-04 Thread Mikalai Samatyrski
Hi, Apache mailing list community! We have configured our applications to run through apache 2.2.15 http server. Access to SVN is configured through apache as well(mod_dav_svn, mod_authz_svn modules). We faced the trouble with incorrect commit authors which happens only sometimes, i.e. several

Re: [us...@httpd] Debian Lenny + MaxRequestsPerChild

2010-10-04 Thread Thomas Lindgren
2010/10/2 Igor Galić i.ga...@brainsware.org - Thomas Lindgren thomas.lindg...@diino.net wrote: Hi all, We just upgraded to Debian Lenny and saw some unexpected behaviour from an Apache node running a mod_perl2 app which I hope someone here can explain. After running the

Re: [us...@httpd] Pre compressed css and javascript

2010-10-04 Thread Joost de Heer
On 10/04/2010 03:55 PM, Eric Covener wrote: RewriteCond %{REQUEST_FILENAME}.gz -f in vhost context, you have to add the document root in yourself, since the request hasn't actually been mapped to a file yet. If I understand the docs correctly, this can also be fixed with

Re: [us...@httpd] Pre compressed css and javascript

2010-10-04 Thread Igor Galić
Eric, Ah I see what you mean changing RewriteCond %{REQUEST_FILENAME}.gz -f to RewriteCond /usr/local/apache2/docs/www.journeycheck.southwesttrains.co.uk/%{REQUEST_FILENAME}.gz -f First off: RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME}.gz -f But.. what about Options

Re: [us...@httpd] Debian Lenny + MaxRequestsPerChild

2010-10-04 Thread Igor Galić
Hi Igor, Thanks for the tips, we'll try to reproduce this first with strace/gdb active. Second, checking this with a clean compile might be a good idea too. The mod_perl2 app is mainly used for extended/hacked WebDAV-access and has been in production for a couple of years under Debian

Re: [us...@httpd] Pre compressed css and javascript

2010-10-04 Thread Ben Short
Joost, That also works for me. Thank you 2010/10/4 Igor Galić i.ga...@brainsware.org: Eric, Ah I see what you mean changing RewriteCond %{REQUEST_FILENAME}.gz -f to RewriteCond /usr/local/apache2/docs/www.journeycheck.southwesttrains.co.uk/%{REQUEST_FILENAME}.gz -f First off:

Re: [us...@httpd] Pre compressed css and javascript

2010-10-04 Thread Eric Covener
But.. what about Options +MultiViews? http://httpd.apache.org/docs/current/content-negotiation.html FWIW I think you need the MutlViewsMatch any and make sure your requests are all for foo and not foo.js, otherwise it doesn't kick in (from my recollection).

Re: [us...@httpd] Options for multiple SSL domains on 1 server

2010-10-04 Thread Grant
I need to set up SSL certificates for multiple domain names on a single server.  I've done some research and I think these are my options: 1. use multiple IPs drawbacks: requires separate apache2 config for each SSL domain, extra IPs must be allocated by the hosting company 2. use

Re: [us...@httpd] Options for multiple SSL domains on 1 server

2010-10-04 Thread Igor Galić
- Grant emailgr...@gmail.com wrote: I need to set up SSL certificates for multiple domain names on a single server.  I've done some research and I think these are my options: 1. use multiple IPs drawbacks: requires separate apache2 config for each SSL domain, extra IPs must be

Re: [us...@httpd] Options for multiple SSL domains on 1 server

2010-10-04 Thread Grant
The virtualhost for each SSL host is what I mean by separate apache2 configs.  I'd like to be able to define different domain names on the fly within my perl scripts without changing apache2 config.  Maybe we're just not there yet? You can also use things like mod_macro to enable that kind

[us...@httpd] A newbie question about http post

2010-10-04 Thread Pito Salas
I was having a debate with a friend of mine. Can you clear this up? Is it true that I can do an http post to any apache/httpd server and get it to upload a file? It would seem like an application should give permission, or at least that httpd could be configured so that an application needs to

Re: [us...@httpd] A newbie question about http post

2010-10-04 Thread fakessh
use the ajax librairie for upload and active the javascript into the formulaire and control all the variables to the upload it's nice way anonymous Le lundi 04 octobre 2010 à 14:23 -0400, Pito Salas a écrit : I was having a debate with a friend of mine. Can you clear this up? Is it true that

Re: [us...@httpd] Options for multiple SSL domains on 1 server

2010-10-04 Thread Igor Galić
- Grant emailgr...@gmail.com wrote: The virtualhost for each SSL host is what I mean by separate apache2 configs.  I'd like to be able to define different domain names on the fly within my perl scripts without changing apache2 config.  Maybe we're just not there yet? You can

Re: [us...@httpd] Options for multiple SSL domains on 1 server

2010-10-04 Thread Grant
The virtualhost for each SSL host is what I mean by separate apache2 configs.  I'd like to be able to define different domain names on the fly within my perl scripts without changing apache2 config.  Maybe we're just not there yet? You can also use things like mod_macro to enable

Re: [us...@httpd] A newbie question about http post

2010-10-04 Thread Igor Galić
- Pito Salas r...@salas.com wrote: I was having a debate with a friend of mine. Can you clear this up? Is it true that I can do an http post to any apache/httpd server and get it to upload a file? It would seem like an application should give permission, or at least that httpd could

Re: [us...@httpd] Options for multiple SSL domains on 1 server

2010-10-04 Thread Rainer Jung
On 04.10.2010 21:00, Igor Galić wrote: - Grantemailgr...@gmail.com wrote: The virtualhost for each SSL host is what I mean by separate apache2 configs. I'd like to be able to define different domain names on the fly within my perl scripts without changing apache2 config. Maybe we're

Re: [us...@httpd] Options for multiple SSL domains on 1 server

2010-10-04 Thread Igor Galić
- Rainer Jung rainer.j...@kippdata.de wrote: On 04.10.2010 21:00, Igor Galić wrote: - Grantemailgr...@gmail.com wrote: The virtualhost for each SSL host is what I mean by separate apache2 configs. I'd like to be able to define different domain names on the fly within