Project

General

Profile

Actions

Bug #351

closed

Ports in Host header cause problem with conditonals

Added by Anonymous over 19 years ago. Updated over 16 years ago.

Status:
Invalid
Priority:
Normal
Category:
core
Target version:
-
ASK QUESTIONS IN Forums:

Description

  1. handish virtual hosting
  2. map all subdomains to a single document-root
    $HTTPhost =~ "\.example\.org$" {
    server.document-root = "/var/www/htdocs/example.org/pages/"
    }

Some HTTP clients (notably Media Player for Mac) always include the port number in the Host header, even if it is not specified in the URL. $HTTP'host' is set to the whole value of the Host header, port and all, causing the above configuration to not work properly when a port number is present in the Host header. My current solution is just to remove the $ from the pattern, and allow Lighttpd match the hostname anywhere in the string.

$HTTPhost =~ "\.example\.org" {
server.document-root = "/var/www/htdocs/example.org/pages/"
}

-- psyon

Actions #1

Updated by Anonymous over 19 years ago

Better to just write a complete regex:

$HTTPhost =~ "^www\.domain\.com(:\d+)?$"

This will match whether or not the port is appended.

-- cliff

Actions #2

Updated by stbuehler over 16 years ago

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

mentioned in the docs.

Actions #3

Updated by stbuehler over 16 years ago

  • Status changed from Fixed to Invalid
Actions

Also available in: Atom