This commit is contained in:
TheWanderingCrow 2025-08-11 20:18:03 -04:00
parent 077850f611
commit 6dc701e568
2 changed files with 8 additions and 36 deletions

View file

@ -159,6 +159,14 @@ in {
}
];
}
{
Wishthis = [
{
icon = "https://wishthis.online/src/assets/img/favicon/favicon-32x32.png";
href = "https://wishthis.online";
}
];
}
{
Amazon = [
{

View file

@ -1,36 +0,0 @@
{config, ...}: let
volumePath = "/overseer/services";
in {
virtualisation.oci-containers = {
backend = "podman";
containers = {
"wishthis" = {
image = "hiob/wishthis:stable";
extraOptions = [
"--ip=10.88.0.15"
];
};
"wishthis-db" = {
image = "mariadb:latest";
extraOptions = [
"--ip=10.88.0.16"
];
};
};
};
services.nginx = {
enable = true;
recommendedProxySettings = true;
virtualHosts = {
"wishlist.wanderingcrow.net" = {
forceSSL = true;
useACMEHost = "wishlist.wanderingcrow.net";
locations."/" = {
proxyPass = "http://10.88.0.15:80";
proxyWebsockets = true;
};
};
};
};
}