Can't get PIAware running

@psionmark So if you haven’t bought a second pi yet, there is a way to make this work:

After installing pihole:

Use an editor to open /etc/lighttpd/external.conf
You could use the following command:

sudo nano /etc/lighttpd/external.conf

Now copy and paste the following:

#this should go into /etc/lighttpd/external.conf

server.modules += (
"mod_alias"
)

# Listen on port 8080 and serve the map there, too.
$SERVER["socket"] == ":8080" {
  alias.url += (
  "/dump1090-fa/data/" => "/run/dump1090-fa/",
  "/dump1090-fa/" => "/usr/share/dump1090-fa/html/",
  "/data/" => "/run/dump1090-fa/",
  "/" => "/usr/share/dump1090-fa/html/"
  )
  url.redirect += (
    "^/dump1090-fa$" => "/dump1090-fa/"
  )
}

Press CTRL-o and ENTER to save
Press CTRL-x to exit

Restart lighttpd:

service lighttpd force-reload

Now it should be all running (theoretically)

This will host dump1090 webview on the port 8080, so you will have to use 192.168.1.123:8080 or whatever the rpi ip is to access it.

Edit: one test has been successful with a modification incorporated in this post (mod_alias was missing)