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

2010-10-04 Thread Igor Galić
- "Rainer Jung" wrote: > On 04.10.2010 21:00, Igor Galić wrote: > > > > - "Grant" 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

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: - "Grant" 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 ye

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

2010-10-04 Thread Igor Galić
- "Pito Salas" 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 be confi

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 thing

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

2010-10-04 Thread Igor Galić
- "Grant" 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 ca

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 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 I can

[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 giv

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 enab

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

2010-10-04 Thread Igor Galić
- "Grant" 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

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 >>

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] Pre compressed css and javascript

2010-10-04 Thread Ben Short
Joost, That also works for me. Thank you 2010/10/4 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: >

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 > Debi

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 Optio

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 %{LA-U:REQUEST_FILEN

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

2010-10-04 Thread Thomas Lindgren
2010/10/2 Igor Galić > > - "Thomas Lindgren" 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 system for a short while, the serv

[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 tim

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 wrote: > On Mon, Oct 4, 2010 at 10:07 AM, Ben Shor

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 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 or .htaccess, because the request has not been mapped

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 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 mapp

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 wrote: > On 28.09.10 04:03, Amol Puglia wrote: > > I would like to know how to get apache home pag

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

[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 %{HTTP_US

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 Se

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 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