mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
73 lines
2.2 KiB
Nix
73 lines
2.2 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.convos;
|
|
in
|
|
{
|
|
options.services.convos = {
|
|
enable = mkEnableOption "Convos";
|
|
listenPort = mkOption {
|
|
type = types.port;
|
|
default = 3000;
|
|
example = 8080;
|
|
description = "Port the web interface should listen on";
|
|
};
|
|
listenAddress = mkOption {
|
|
type = types.str;
|
|
default = "*";
|
|
example = "127.0.0.1";
|
|
description = "Address or host the web interface should listen on";
|
|
};
|
|
reverseProxy = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = ''
|
|
Enables reverse proxy support. This will allow Convos to automatically
|
|
pick up the `X-Forwarded-For` and
|
|
`X-Request-Base` HTTP headers set in your reverse proxy
|
|
web server. Note that enabling this option without a reverse proxy in
|
|
front will be a security issue.
|
|
'';
|
|
};
|
|
};
|
|
config = mkIf cfg.enable {
|
|
systemd.services.convos = {
|
|
description = "Convos Service";
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "networking.target" ];
|
|
environment = {
|
|
CONVOS_HOME = "%S/convos";
|
|
CONVOS_REVERSE_PROXY = if cfg.reverseProxy then "1" else "0";
|
|
MOJO_LISTEN = "http://${toString cfg.listenAddress}:${toString cfg.listenPort}";
|
|
};
|
|
serviceConfig = {
|
|
ExecStart = "${pkgs.convos}/bin/convos daemon";
|
|
Restart = "on-failure";
|
|
StateDirectory = "convos";
|
|
WorkingDirectory = "%S/convos";
|
|
DynamicUser = true;
|
|
MemoryDenyWriteExecute = true;
|
|
ProtectHome = true;
|
|
ProtectClock = true;
|
|
ProtectHostname = true;
|
|
ProtectKernelTunables = true;
|
|
ProtectKernelModules = true;
|
|
ProtectKernelLogs = true;
|
|
ProtectControlGroups = true;
|
|
PrivateDevices = true;
|
|
PrivateMounts = true;
|
|
PrivateUsers = true;
|
|
LockPersonality = true;
|
|
RestrictRealtime = true;
|
|
RestrictNamespaces = true;
|
|
RestrictAddressFamilies = [ "AF_INET" "AF_INET6"];
|
|
SystemCallFilter = "@system-service";
|
|
SystemCallArchitectures = "native";
|
|
CapabilityBoundingSet = "";
|
|
};
|
|
};
|
|
};
|
|
}
|