diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2024-10-30 20:16:45 +0100 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2024-10-30 20:16:45 +0100 |
commit | 009a43799c28eca77752de4268c0e74700d13527 (patch) | |
tree | 5eb771177ef9ccde32ecdaa11149549b5e9ea19e | |
parent | 9c14b06fc484e4be8852c4f379cb1671ed367d6a (diff) | |
download | dots-master.tar.gz dots-master.zip |
-rw-r--r-- | machines/srv3/configuration.nix | 9 | ||||
-rw-r--r-- | machines/srv3/services/cgit/baby-yoda.png (renamed from machines/srv3/baby-yoda.png) | bin | 957567 -> 957567 bytes | |||
-rw-r--r-- | machines/srv3/services/cgit/baby-yoda.png.comp (renamed from machines/srv3/baby-yoda.png.comp) | bin | 7710 -> 7710 bytes | |||
-rw-r--r-- | machines/srv3/services/cgit/default.nix (renamed from machines/srv3/cgit.nix) | 0 | ||||
-rw-r--r-- | machines/srv3/services/webdav/default.nix | 47 | ||||
-rw-r--r-- | machines/srv3/webdav.nix | 33 |
6 files changed, 54 insertions, 35 deletions
diff --git a/machines/srv3/configuration.nix b/machines/srv3/configuration.nix index ae54e48..f223b11 100644 --- a/machines/srv3/configuration.nix +++ b/machines/srv3/configuration.nix @@ -13,8 +13,8 @@ in ../../modules/obsidian-livesync.nix ./home-assistant.nix ./hardware-configuration.nix - ./webdav.nix - ./cgit.nix + ./services/webdav + ./services/cgit ./noip.nix ]; @@ -24,6 +24,11 @@ in adminsFile = "/etc/couchdb.ini"; }; + services.srv3-webdav = { + enable = true; + domain = "files.${domain}"; + }; + boot.loader.grub.enable = true; boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only diff --git a/machines/srv3/baby-yoda.png b/machines/srv3/services/cgit/baby-yoda.png index 42a200c..42a200c 100644 --- a/machines/srv3/baby-yoda.png +++ b/machines/srv3/services/cgit/baby-yoda.png Binary files differdiff --git a/machines/srv3/baby-yoda.png.comp b/machines/srv3/services/cgit/baby-yoda.png.comp index 26eb247..26eb247 100644 --- a/machines/srv3/baby-yoda.png.comp +++ b/machines/srv3/services/cgit/baby-yoda.png.comp Binary files differdiff --git a/machines/srv3/cgit.nix b/machines/srv3/services/cgit/default.nix index bcd63bb..bcd63bb 100644 --- a/machines/srv3/cgit.nix +++ b/machines/srv3/services/cgit/default.nix diff --git a/machines/srv3/services/webdav/default.nix b/machines/srv3/services/webdav/default.nix new file mode 100644 index 0000000..e184490 --- /dev/null +++ b/machines/srv3/services/webdav/default.nix @@ -0,0 +1,47 @@ +{ config, lib, ... }: +let +cfg = config.services.srv3-webdav; +in +{ + + options = { + services.srv3-webdav = { + enable = lib.mkEnableOption "WebDav server"; + + domain = lib.mkOption { + type = lib.types.str; + description = "Where webdav server should live"; + }; + + port = lib.mkOption { + type = lib.types.number; + default = 6060; +# FIX: Hardening reverse proxy + description = "Internal port on which webdav server will run"; + }; + + configFile = lib.mkOption { + type = lib.types.path; + default = "/etc/webdav.yaml"; + description = "WebDav server config file"; + }; + }; + + }; + config = lib.mkIf cfg.enable { + services.nginx.virtualHosts.${cfg.domain} = { + forceSSL = true; + enableACME = true; + + locations."/" = { + proxyPass = "http://localhost:${toString cfg.port}"; + }; + }; + + services.webdav = { + enable = true; + configFile = cfg.configFile; + }; + }; + +} diff --git a/machines/srv3/webdav.nix b/machines/srv3/webdav.nix deleted file mode 100644 index 9a4c126..0000000 --- a/machines/srv3/webdav.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ pkgs, ... }: -let - port = "6060"; -in -{ - services.nginx.virtualHosts."files.niedzwiedzinski.cyou" = { - forceSSL = true; - enableACME = true; - - locations."/" = { - proxyPass = "http://localhost:${port}"; - }; - }; - - services.webdav = { - enable = true; - configFile = "/etc/webdav.yaml"; - #settings = { - #address = "0.0.0.0"; - #port = port; - #scope = "/srv/files"; - #modify = true; - #auth = true; - #users = [ - #{ - #username = "patryk"; - #password = "test"; - #} - #]; - #}; - }; - -} |