ADD microbin service

This commit is contained in:
Alexandre LUCAZEAU 2023-12-28 18:11:02 +00:00
parent d7a7573621
commit 4d804b08d7
1 changed files with 16 additions and 4 deletions

View File

@ -24,8 +24,8 @@ in
encode gzip encode gzip
reverse_proxy http://localhost:8080 reverse_proxy http://localhost:8080
} }
https://search.atlanticaweb.fr { https://bin.atlanticaweb.fr {
reverse_proxy http://localhost:5000 reverse_proxy http://localhost:8081
} }
atlanticaweb.fr { atlanticaweb.fr {
root * /srv/www/atlanticaweb.fr root * /srv/www/atlanticaweb.fr
@ -62,6 +62,18 @@ in
}; };
users.groups.caddy.gid = config.ids.uids.caddy; users.groups.caddy.gid = config.ids.uids.caddy;
services.jellyfin.enable = true; services = {
services.shiori.enable = true; jellyfin.enable = true;
shiori.enable = true;
microbin = {
enable = true;
settings = {
MICROBIN_PORT = 8081;
MICROBIN_NO_LISTING = true;
MICROBIN_ENABLE_BURN_AFTER = true;
MICROBIN_QR = true;
MICROBIN_PUBLIC_PATH = "https://bin.atlanticaweb.fr";
};
};
};
} }