I upgraded from latest v.5.x to v.6 using pihole -up
but I am having an issue with reaching the web interface.
This installation is running on a Pi with nginx as reverse proxy. There is two other docker applications running on this little host.
Previously, pihole was set to listen on port 82 (by adjusting lighttpd).
Now, there seems to be a conflict of ports that Pihole wants to use... see snippet from debug log.
*** [ DIAGNOSING ]: Ports in use
udp:0.0.0.0:34817 is in use by avahi-daemon
[✓] udp:0.0.0.0:53 is in use by pihole-FTL
udp:0.0.0.0:123 is in use by pihole-FTL
udp:127.0.0.1:5335 is in use by unbound
udp:0.0.0.0:5353 is in use by avahi-daemon
[✓] udp:*:53 is in use by pihole-FTL
udp:*:123 is in use by pihole-FTL
udp:*:33917 is in use by avahi-daemon
udp:*:5353 is in use by avahi-daemon
[✗] tcp:0.0.0.0:80 is in use by nginx (https://docs.pi-hole.net/main/prerequisites/#ports)
[✓] tcp:0.0.0.0:53 is in use by pihole-FTL
[✗] tcp:127.0.0.1:8080 is in use by docker-proxy (https://docs.pi-hole.net/main/prerequisites/#ports)
[✓] tcp:0.0.0.0:8443 is in use by pihole-FTL
tcp:0.0.0.0:9443 is in use by docker-proxy
tcp:0.0.0.0:2223 is in use by sshd
tcp:127.0.0.1:5335 is in use by unbound
tcp:0.0.0.0:8000 is in use by docker-proxy
[✗] tcp:0.0.0.0:443 is in use by nginx (https://docs.pi-hole.net/main/prerequisites/#ports)
[✗] tcp:[::]:80 is in use by nginx (https://docs.pi-hole.net/main/prerequisites/#ports)
[✓] tcp:[::]:84 is in use by pihole-FTL
[✓] tcp:[::]:53 is in use by pihole-FTL
tcp:[::]:9443 is in use by docker-proxy
tcp:[::]:2223 is in use by sshd
tcp:[::]:8000 is in use by docker-proxy
[✗] tcp:[::]:443 is in use by nginx (https://docs.pi-hole.net/main/prerequisites/#ports)
[✓] tcp:[::]:8080 is in use by pihole-FTL
Any ideas how to fix this? How can I make pihole use port 82 again?
full debug log: https://tricorder.pi-hole.net/kysyEPm9/
I took a look at Prerequisites - Pi-hole documentation, where it says:
If you have another webserver already listening on port
80
/443
, thenpihole-FTL
will attempt to bind to8080
/8443
instead. If neither of these ports are available,pihole-FTL
's webserver will be unavailable until ports are configured manually (see configuration optionwebserver.port
)
Unfortunately, I have no idea where to find webserver.port. Am I on the right track at least?