Project

General

Profile

Actions

Feature #932

closed

Per Site Configuration for Lighttpd

Added by Anonymous over 18 years ago. Updated over 1 year ago.

Status:
Wontfix
Priority:
Normal
Category:
mod_simple_vhost
Target version:
-
ASK QUESTIONS IN Forums:
No

Description

With just a little bit of work it is possible to get per-site config files for use with virtual hosting. To do so I wrote a simple script and added it in lighttpd.conf:

lighttpd.conf:
> include_shell "/etc/lighttpd/read-sites.sh" 

read-sites.sh:
>#!/bin/bash
>for i in `ls /etc/lighttpd/sites/`; do
>    echo "\$HTTP[\"host\"] =~ \"$i\" {";
>    cat /etc/lighttpd/sites/$i;
>    echo;
>    echo };
>done

# ls /etc/lighttpd/sites/
> domain1.com domain2.com domain3.com

#cat /etc/lighttpd/sites/domain1.com
>url.rewrite-once = (
>    "^/([[0-9]]+)(.*)$" => "/index.php?page=list_products&cat_id=$1&$2",
>    "^/page_([[a-z0-9_]]*)" => "/index.php?page=$1" 
>)

Something like this could find its way to documentation, I think. However, more useful would be if there was a possibility to define such configs on a per site basis without the need of restarting the webserver. Hope you guys will understand my ugly English, thx.

Jo

-- js

Actions #1

Updated by stbuehler over 16 years ago

  • Status changed from New to Fixed
  • Resolution set to wontfix

many people will want to have manual control over the vhost name, so this is not a good solution.

and there will be no support for dynamic configs in 1.x

Actions #2

Updated by stbuehler over 16 years ago

  • Status changed from Fixed to Wontfix
Actions #3

Updated by gstrauss over 1 year ago

  • Description updated (diff)
  • ASK QUESTIONS IN Forums set to No
Actions

Also available in: Atom