wiki: Enable nginx proxy for navidrome and minio

This commit is contained in:
Payas Relekar 2023-06-04 22:42:18 +05:30
parent 4e4b6add85
commit 739e8e504d

View file

@ -107,27 +107,19 @@
nginx = {
enable = true;
virtualHosts = {
"outline.bebop" = {
locations."/" = {
proxyPass = "http://${config.services.outline.publicUrl}";
};
};
"bebop.bhankas.org" = {
locations = {
"/music" = {
proxyPass = "http://${config.services.navidrome.settings.Address}:${toString config.services.navidrome.settings.Port}";
};
"outline.localhost" = {
locations."/" = {
proxyPass = "http://${config.services.outline.publicUrl}";
};
};
"/minio" = {
proxyPass = "http://${config.services.minio.consoleAddress}";
};
"dex.bebop" = {
locations."/" = {
proxyPass = "http://${config.services.dex.settings.web.http}";
};
};
"dex.localhost" = {
locations."/" = {
proxyPass = "http://${config.services.dex.settings.web.http}";
# "/dex" = {
# proxyPass = "http://${config.services.dex.settings.web.http}";
# };
};
};
};