Re: mod_ssl custom vhost module

2017-03-30 Thread Nick Kew
On Thu, 2017-03-30 at 15:20 +, Michael Sløgedal wrote: > I looked a little on the mod_ssl source code, and it seems it does a lot of > preprocessing on config stage, and relies on a combination of VirtualHost and > ServerName / Alias directives. > I suppose this means that mod_ssl wouldn't

mod_ssl custom vhost module

2017-03-30 Thread Michael Sløgedal
Hi, I have a custom vhost module using ap_hook_translate_name and sql lookup. This is enabled through a single VirtualHost section in config. Now I need to add ssl certificates with SNI on selected sites / domains. What's the best way to go about this? I looked a little on the mod_ssl source

custom vhost module

2004-09-28 Thread Brian Akins
This may be wrong list to ask, but, is there a supported way to have a module decide which vhost a request belongs to? I know of some of the mass virtual hosting modules, but they seem to not be fully integrated. (Not sure if that's the correct way to say that). What I'm trying to

Re: custom vhost module

2004-09-28 Thread Glenn Strauss
On Tue, Sep 28, 2004 at 09:29:15AM -0400, Brian Akins wrote: This may be wrong list to ask, but, is there a supported way to have a module decide which vhost a request belongs to? I know of some of the mass virtual hosting modules, but they seem to not be fully integrated. (Not sure if

Re: custom vhost module

2004-09-28 Thread Brian Akins
Glenn Strauss wrote: On Tue, Sep 28, 2004 at 09:29:15AM -0400, Brian Akins wrote: Have you tried giving a list of addresses and ports? VirtualHost 1.2.3.4:8080 1.2.3.4:8081 1.2.3.4:8082 1.2.3.4:8083 ... /VirtualHost I need to be able to use *:8080 *:8081, but that's not allowed... -- Brian Akins

Re: custom vhost module

2004-09-28 Thread Filip Hanik - Dev
what about VirtualHost *:8080 Include custom.conf /VirtualHost VirtualHost *:8081 Include custom.conf /VirtualHost - Original Message - From: Brian Akins [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, September 28, 2004 3:14 PM Subject: Re: custom vhost module Glenn

Re: custom vhost module

2004-09-28 Thread Glenn Strauss
On Tue, Sep 28, 2004 at 04:14:03PM -0400, Brian Akins wrote: Glenn Strauss wrote: On Tue, Sep 28, 2004 at 09:29:15AM -0400, Brian Akins wrote: Have you tried giving a list of addresses and ports? VirtualHost 1.2.3.4:8080 1.2.3.4:8081 1.2.3.4:8082 1.2.3.4:8083 ... /VirtualHost I need