forked from emily/nixfiles
added jellyfin
This commit is contained in:
parent
af460cad2e
commit
8fcd52c9f9
3 changed files with 78 additions and 5 deletions
|
@ -1,5 +1,6 @@
|
||||||
{ config, pkgs, ... }: {
|
{ config, pkgs, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
|
./nginx.nix
|
||||||
../../common
|
../../common
|
||||||
../../common-lxc.nix
|
../../common-lxc.nix
|
||||||
../../common-nginx.nix
|
../../common-nginx.nix
|
||||||
|
@ -15,4 +16,6 @@
|
||||||
"2a0f:be01:0:100::1337/128"
|
"2a0f:be01:0:100::1337/128"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.jellyfin.enable = true;
|
||||||
}
|
}
|
||||||
|
|
70
config/hosts/crime/nginx.nix
Normal file
70
config/hosts/crime/nginx.nix
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
let
|
||||||
|
extraConfig = ''
|
||||||
|
add_header Strict-Transport-Security $hsts_header;
|
||||||
|
add_header X-Content-Type-Options "nosniff" always;
|
||||||
|
add_header X-XSS-Protection "1; mode=block" always;
|
||||||
|
#add_header X-Frame-Options "SAMEORIGIN" always;
|
||||||
|
add_header Referrer-Policy "same-origin" always;
|
||||||
|
'';
|
||||||
|
proxyConfig = ''
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_set_header X-Forwarded-Protocol $scheme;
|
||||||
|
proxy_set_header X-Forwarded-Host $http_host;
|
||||||
|
'';
|
||||||
|
jellyAddr = "[::1]";
|
||||||
|
jellyWeb = {
|
||||||
|
forceSSl = true;
|
||||||
|
http3 = true;
|
||||||
|
quic = true;
|
||||||
|
inherit extraConfig;
|
||||||
|
|
||||||
|
locations = {
|
||||||
|
"= /".return = "302 https://$host/web/";
|
||||||
|
"/" = {
|
||||||
|
proxyPass = "http://${jellyAddr}:8096";
|
||||||
|
extraConfig = ''
|
||||||
|
${proxyConfig}
|
||||||
|
proxy_buffering on;
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
"= /web/" = {
|
||||||
|
proxyPass = "http://${jellyAddr}:8096/web/index.html"
|
||||||
|
extraConfig = proxyConfig;
|
||||||
|
};
|
||||||
|
"/socket" = {
|
||||||
|
proxyPass = "http://${jellyAddr}:8096"
|
||||||
|
proxyWebsockets = true;
|
||||||
|
extraConfig = proxyConfig;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
in {
|
||||||
|
services.nginx = {
|
||||||
|
virtualHosts = {
|
||||||
|
"fentanyl.trade" = jellyWeb // {
|
||||||
|
enableACME = true;
|
||||||
|
};
|
||||||
|
"frotti.ng" = jellyWeb // {
|
||||||
|
useACMEHost = "fentanyl.trade";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
createHost = {
|
||||||
|
"watch.kyouma.net" = { redirectTo = "fentanyl.trade"; };
|
||||||
|
"redirect" = {
|
||||||
|
default = true;
|
||||||
|
reuseport = true;
|
||||||
|
useACMEHost = "fentanyl.trade";
|
||||||
|
extraConfig = ''
|
||||||
|
return 403;
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
security.acme.certs = {
|
||||||
|
"fentanyl.trade" = { extraDomainNames = [ "frotti.ng" "watch.kyouma.net" ]; };
|
||||||
|
};
|
||||||
|
}
|
|
@ -29,7 +29,7 @@ in {
|
||||||
};
|
};
|
||||||
services.vyosBld = {
|
services.vyosBld = {
|
||||||
enable = true;
|
enable = true;
|
||||||
output = "/nix/var/www/kyouma.net/vyos";
|
output = "/var/www/kyouma.net/vyos";
|
||||||
buildFlags = {
|
buildFlags = {
|
||||||
architecture = "amd64";
|
architecture = "amd64";
|
||||||
build-by = "noc@kyouma.net";
|
build-by = "noc@kyouma.net";
|
||||||
|
@ -57,7 +57,7 @@ in {
|
||||||
"miau.zip" = { root = kyouma-www.default; };
|
"miau.zip" = { root = kyouma-www.default; };
|
||||||
"www.miau.zip" = { redirectTo = "miau.zip"; };
|
"www.miau.zip" = { redirectTo = "miau.zip"; };
|
||||||
"www.kyouma.net" = { redirectTo = "kyouma.net"; };
|
"www.kyouma.net" = { redirectTo = "kyouma.net"; };
|
||||||
"emily.cat" = { root = "/nix/var/www/emily.cat/_site"; };
|
"emily.cat" = { root = "/var/www/emily.cat/_site"; };
|
||||||
"www.emily.cat" = { redirectTo = "kyouma.net"; };
|
"www.emily.cat" = { redirectTo = "kyouma.net"; };
|
||||||
"www.cocaine.trade" = { redirectTo = "cocaine.trade"; };
|
"www.cocaine.trade" = { redirectTo = "cocaine.trade"; };
|
||||||
|
|
||||||
|
@ -70,7 +70,7 @@ in {
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
"cocaine.trade" = {
|
"cocaine.trade" = {
|
||||||
root = "/nix/var/www/basti/cocaine.trade";
|
root = "/var/www/basti/cocaine.trade";
|
||||||
extraConfig = ''error_page 404 /404.html;'';
|
extraConfig = ''error_page 404 /404.html;'';
|
||||||
locations."/" = {
|
locations."/" = {
|
||||||
index = "index.html";
|
index = "index.html";
|
||||||
|
@ -80,7 +80,7 @@ in {
|
||||||
};
|
};
|
||||||
"files.cocaine.trade" = {
|
"files.cocaine.trade" = {
|
||||||
useACMEHost = "cocaine.trade";
|
useACMEHost = "cocaine.trade";
|
||||||
root = "/nix/var/www/basti/files.cocaine.trade";
|
root = "/var/www/basti/files.cocaine.trade";
|
||||||
locations."/".extraConfig = autoIndex;
|
locations."/".extraConfig = autoIndex;
|
||||||
};
|
};
|
||||||
"kyouma.net" = {
|
"kyouma.net" = {
|
||||||
|
@ -92,7 +92,7 @@ in {
|
||||||
extraConfig = autoIndex;
|
extraConfig = autoIndex;
|
||||||
};
|
};
|
||||||
"/ihk/" = {
|
"/ihk/" = {
|
||||||
root = "/nix/var/www/kyouma.net/ihk";
|
root = "/var/www/kyouma.net/ihk";
|
||||||
extraConfig = autoIndex;
|
extraConfig = autoIndex;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue