mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
12 lines
269 B
Nix
12 lines
269 B
Nix
{config, ...}: {
|
|
services = {
|
|
ombi = {
|
|
enable = true;
|
|
port = 5000;
|
|
};
|
|
nginx.virtualHosts."ombi.gensokyo.zone" = {
|
|
enableACME = true;
|
|
locations."/".proxyPass = "http://localhost:${toString config.services.ombi.port}";
|
|
};
|
|
};
|
|
}
|