Admin Dashboard connection refused

Please follow the below template, it will help us to help you!

If you are Experiencing issues with a Pi-hole install that has non-standard elements (e.g you are using nginx, apache2 or another reverse proxy, or there is some other aspect of your install that is customised) - please use the Community Help category.

Expected Behaviour:

Admin Page Loads

Proxmox 8.2 LXC

Pi-Hole installed via Proxmox VE Scripts

Actual Behaviour:

admin page does not load using ip/admin or pi.hole/admin
Results in Connection Refused

Debug Token:

https://tricorder.pi-hole.net/cbR546b4/

For some reason, you tried to change the web server ports, but you forgot to separate the ports from the IPv6 using :, resulting in invalid ports.

Also, you removed the s flag from the value. This means that you won't be able to connect to the web interface using HTTPS.

port = "80,443,[::]80,[::]443"           # Your invalid entry

port = "80,443,[::]:80,[::]:443"         # using the correct format, but no HTTPS

port = "80o,443os,[::]:80o,[::]:443os"   # Default values

The web server failed to start. Use the default ports showed above.