Navidrome: Difference between revisions
No edit summary |
add notes based on selfhosting experience |
||
| Line 8: | Line 8: | ||
}; | }; | ||
</syntaxhighlight>The service should be available add http://127.0.0.1:4533. Continue adding an admin login including setting a password. | </syntaxhighlight>The service should be available add http://127.0.0.1:4533. Continue adding an admin login including setting a password. | ||
==== Setting to localhost ==== | |||
<syntaxhighlight lang="nix"> | |||
servces.navidrome = { | |||
settings = { | |||
Address = "0.0.0.0"; | |||
}; | |||
}; | |||
</syntaxhighlight> | |||
==== Open the Firewall ==== | |||
If it is enabled the following settings will open just for this port | |||
<syntaxhighlight lang="nix"> | |||
servces.navidrome = { | |||
openFirewall = true; | |||
}; | |||
</syntaxhighlight> | |||
=== Tips and tricks === | === Tips and tricks === | ||