Setting up Netbird on Proxmox with Authentik and Nginx.
I am rather inexperienced with networking concepts, so I ask your forgiveness beforehand for my dimwittedness.
I have a Proxmox server, and on that server I have three Debian LXC containers, one for Nginx and the UI which I have chosen for managing it, one for Authentik, and one I want to setup Netbird in.
Authentik and Netbird are going to be run in docker containers within their respective LXC containers.
I have gotten as far as running the
configure.sh
file mentioned in step five of the advanced installation guide for Netbird, and here is the output I get:
3 Replies
The IP is the LAN address for the Netbird container, and not difficult to change, but I'm confused as to what it means by telling me I need to
forward 443 -http-> dashboard:80
.
I feel like it's blatanly obvious and I'm just missing it.
Maybe forward requests from 443 outside to port 80 inside? 🤔So what I do is forwarding 443 to the internal port of the dashboard
With docker, that would be the default port, but you'd also have to change the port back to the default in the docker-compose.yml.tmpl
Otherwise it tries to bind on 443 and that is already claimed by your RP
Thank you for your reply.
I'll try it out sometime in the next few days if my schedule allows me to.