Actions
Bug #351
closedPorts in Host header cause problem with conditonals
Status:
Invalid
Priority:
Normal
Category:
core
Target version:
-
ASK QUESTIONS IN Forums:
Description
- handish virtual hosting
- 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
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
Updated by stbuehler over 16 years ago
- Status changed from New to Fixed
- Resolution set to invalid
mentioned in the docs.
Actions
Also available in: Atom