mirror of
https://github.com/tboerger/nixos-config
synced 2024-12-03 11:38:14 +01:00
59 lines
1002 B
Nix
59 lines
1002 B
Nix
{ pkgs, lib, config, options, fetchurl, ... }:
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.personal.services.minecraft;
|
|
|
|
in
|
|
{
|
|
options = {
|
|
personal = {
|
|
services = {
|
|
minecraft = {
|
|
enable = mkEnableOption "Media";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
services = {
|
|
|
|
# TDB
|
|
|
|
nginx = {
|
|
virtualHosts =
|
|
let
|
|
base = locations: {
|
|
inherit locations;
|
|
|
|
useACMEHost = "boerger.ws";
|
|
forceSSL = true;
|
|
};
|
|
proxy = port: base {
|
|
"/" = {
|
|
proxyPass = "http://127.0.0.1:" + toString (port) + "/";
|
|
proxyWebsockets = true;
|
|
};
|
|
};
|
|
in
|
|
{
|
|
"minecraft.boerger.ws" = proxy 2342;
|
|
};
|
|
};
|
|
};
|
|
|
|
personal = {
|
|
services = {
|
|
acme = {
|
|
enable = true;
|
|
};
|
|
|
|
webserver = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|