Add a Phanpy fork frontend to GtS
This commit is contained in:
parent
a1e567e5f4
commit
4390c7d682
5 changed files with 101 additions and 13 deletions
16
nki-personal-do/phanpy.nix
Normal file
16
nki-personal-do/phanpy.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
let
|
||||
host = "social.dtth.ch";
|
||||
port = 61010;
|
||||
in
|
||||
{
|
||||
cloud.traefik.hosts.phanpy = { inherit host port; };
|
||||
services.nginx.virtualHosts.phanpy = {
|
||||
listen = [{
|
||||
inherit port;
|
||||
addr = "127.0.0.1";
|
||||
}];
|
||||
root = "${pkgs.dtth-phanpy}/lib/phanpy";
|
||||
};
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue