PXE boot devices from Omnia

Look at this thread - You can find some info there …

I have configured lighttpd to serve my webpages on Turris 1.0, so I created new folder “www3” and placed my webs into it - I did it many years ago, so not sure if there is something more needed to be configured …
In “/etc/lighttpd/conf.d” I have placed config files for my web pages:

myadmin.conf - containing:

# lighttpd include file for myadmin

## Necessary lighttpd modules
#server.modules += (
#        "mod_proxy"
#)

$HTTP["url"] =~ "^/myadmin/*" {
  server.dir-listing = "enable"
}

alias.url += (
        "/vnstat" => "/www3/vnstat"
)

alias.url += (
        "/myadmin" => "/www3/myadmin"
)
1 Like