Is it possible to change the port that the PiAware Skyview web UI is available on?
When the setup scripts executed it installed it on 8080. If I want it to just respond on good old 80, can I do this? If so, how?
I found this? Change port 8080 on PiAware 3 but my lighttpd appears to already respond with a default lighttpd page on port 80???
server.modules = (
"mod_access",
"mod_alias",
"mod_compress",
"mod_redirect",
)
server.pid-file = "/var/run/lighttpd.pid"
server.username = "www-data"
server.groupname = "www-data"
server.port = 80
index-file.names = ( "index.php", "index.html", "index.lighttpd.html$
url.access-deny = ( "~", ".inc" )
static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
compress.cache-dir = "/var/cache/lighttpd/compress/"
compress.filetype = ( "application/javascript", "text/css", "text/htm$
# default listening port for IPv6 falls back to the IPv4 port
include_shell "/usr/share/lighttpd/use-ipv6.pl " + server.port
include_shell "/usr/share/lighttpd/create-mime.assign.pl"
include_shell "/usr/share/lighttpd/include-conf-enabled.pl"