Comment on set up local DNS using Pi-hole + nginx + audiobookshelf
BigDogDave@lemmy.world 4 days ago
I can’t be certain here that the network configuration you’ve supplied will allow nginx to connect to audiobookshelf. If I were you I’d create a named docker network and connect both npn and audiobookshelf to it as described in their best practice documentation: nginxproxymanager.com/advanced-config/#best-pract…
happeningtofry99158@lemmy.world 4 days ago
Thank you! Can you also explain the difference between
and
BigDogDave@lemmy.world 4 days ago
default
in this example is the actual name of the network, in this case we’re modifying the default network.external: true
declares that the network has already been created,name: scoobydoo
is a way of customizing the name of the default network.happeningtofry99158@lemmy.world 3 days ago
thanks a lot!