I am trying to configure my lighttpd server to use a fastcgi module. The recipe I am following ( blindly ) calls for the following line in lighttpd.conf
$HTTP["host"] =~ "(^|\.)example\.com$" {
I am running on a virtual private server, and I do not have a domain name, just an IP. So I assume that I have to replace the domain name with my IP - let's say 100.101.102.103
This does not work
$HTTP["host"] =~ "(^|\.)100\.101\.102\.103$" {
Neither does several variations.