nixos-config/services/paperless.nix
Antoine Martin f0e5e90c10 services: use wildcard certificate
Should have done this a long time ago
2021-07-13 01:08:01 +02:00

36 lines
697 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.my.services.paperless;
my = config.my;
domain = config.networking.domain;
in
{
options.my.services.paperless = {
enable = lib.mkEnableOption "Paperless";
port = mkOption {
type = types.port;
default = 8080;
example = 8080;
description = "Internal port for Paperless service";
};
};
config = mkIf cfg.enable {
services.nginx.virtualHosts = {
"paperless.${domain}" = {
forceSSL = true;
useACMEHost = domain;
locations."/" = {
proxyPass = "http://127.0.0.1:${toString cfg.port}";
proxyWebsockets = true;
};
};
};
};
}