Files
stubbfelnix/services/etherpad.nix
2018-01-28 16:55:55 +01:00

15 lines
243 B
Nix

{ config, pkgs, ... }:
{
services.nginx.virtualHosts."pad.stubbe.rocks" = {
enableACME = true;
forceSSL = true;
locations."/".proxyPass = "http://localhost:9001";
};
services.etherpad = {
enable = true;
};
}