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
|
@ -19,6 +19,7 @@
|
|||
./miniflux.nix
|
||||
./writefreely.nix
|
||||
./synapse.nix
|
||||
./phanpy.nix
|
||||
];
|
||||
|
||||
common.linux.enable = false; # Don't enable the "common linux" module, this is a special machine.
|
||||
|
|
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