2024-06-02 12:41:23 +02:00
|
|
|
# SPDX-FileCopyrightText: 2020-2024 Simon Bruder <simon@sbruder.de>
|
2024-01-06 01:19:35 +01:00
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
|
2020-12-31 15:44:24 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
|
|
services = {
|
2021-03-01 15:27:18 +01:00
|
|
|
"media" = config.sops.secrets.media-proxy-auth.path;
|
2022-09-23 00:14:45 +02:00
|
|
|
"media-sb" = config.sops.secrets.media-proxy-auth.path;
|
2021-03-01 15:27:18 +01:00
|
|
|
"torrent" = config.sops.secrets.torrent-proxy-auth.path;
|
2023-10-04 17:02:16 +02:00
|
|
|
"sturzbach" = config.sops.secrets.torrent-proxy-auth.path;
|
2020-12-31 15:44:24 +01:00
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.sbruder.media-proxy.enable = lib.mkEnableOption "media proxy";
|
|
|
|
|
2021-01-06 13:09:29 +01:00
|
|
|
config = lib.mkIf config.sbruder.media-proxy.enable {
|
2021-03-01 15:27:18 +01:00
|
|
|
sops.secrets = {
|
|
|
|
torrent-proxy-auth.owner = "nginx";
|
|
|
|
media-proxy-auth.owner = "nginx";
|
2021-01-06 13:09:29 +01:00
|
|
|
};
|
2021-03-01 15:27:18 +01:00
|
|
|
systemd.services.nginx.serviceConfig.SupplementaryGroups = lib.singleton config.users.groups.keys.name;
|
2021-01-06 13:09:29 +01:00
|
|
|
|
2021-03-27 12:45:43 +01:00
|
|
|
# otherwise name resolution fails
|
|
|
|
systemd.services.nginx.after = [ "network-online.target" ];
|
2024-06-02 12:41:23 +02:00
|
|
|
systemd.services.nginx.wants = [ "network-online.target" ];
|
2021-01-06 13:09:29 +01:00
|
|
|
services.nginx = {
|
|
|
|
enable = true;
|
2022-03-18 23:25:23 +01:00
|
|
|
commonHttpConfig = ''
|
|
|
|
map $http_referer $media_proxy_referer {
|
2023-12-16 11:56:04 +01:00
|
|
|
~^http://.*\.localhost/ "";
|
2022-03-18 23:25:23 +01:00
|
|
|
default $http_referer;
|
|
|
|
}
|
|
|
|
'';
|
2023-12-16 11:56:04 +01:00
|
|
|
virtualHosts = lib.mapAttrs'
|
|
|
|
(name: secret: lib.nameValuePair "${name}.localhost" {
|
|
|
|
locations."/" = {
|
|
|
|
proxyPass = "https://${name}.sbruder.de/";
|
|
|
|
proxyWebsockets = true;
|
|
|
|
# they interfere here, as the host needs to be changed
|
|
|
|
recommendedProxySettings = false;
|
|
|
|
extraConfig = ''
|
|
|
|
proxy_buffering off;
|
|
|
|
include ${secret};
|
|
|
|
charset utf-8;
|
|
|
|
proxy_set_header Referer $media_proxy_referer;
|
|
|
|
proxy_set_header Origin $media_proxy_referer;
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
})
|
|
|
|
services;
|
2020-12-31 15:44:24 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|