Unfortunately no one can be told what fun_plug is - you have to see it for yourself.
You are not logged in.
Good day all!
I have DNS-323 for couple of years now, and I wonder how to host more than one website on my dns-323?
Is it possible?
thanks for all answer!
Last edited by capitainabloc (2011-10-05 19:08:56)
Offline
lighttp includes virtual hosting options. Haven't actually tried it but I presume it will work.
Offline
Works fine. In lighttpd.conf put something like
server.document-root = "/ffp/www/catchall/"
$HTTP["host"]=~"(^|\.)domain1\.com$" {
server.document-root = "/ffp/www/domain1.com/"
}
$HTTP["host"]=~"(^|\.)domain2\.com$" {
server.document-root = "/ffp/www/domain2.com/"
}
Now all accesses for *.domain1.com get /ffp/www/domain1.com as document root, *.domain2.com get /ffp/www/domain2.com, and everything else get /ffp/www/catchall
Offline