96 lines
2.6 KiB
Nix
96 lines
2.6 KiB
Nix
{ aspect, config, hosts, lib, pkgs, tools, ... }:
|
|
with tools.nginx;
|
|
let
|
|
inherit (tools.meta) domain;
|
|
cfg = config.services.ipfs;
|
|
gwPort = config.portsStr.ipfsGateway;
|
|
in
|
|
{
|
|
imports = [
|
|
aspect.modules.ipfs
|
|
];
|
|
|
|
systemd.slices.remotefshost.sliceConfig = {
|
|
IOWeight = 5;
|
|
IOReadIOPSMax = [
|
|
"/dev/sda 100"
|
|
"/dev/sdb 100"
|
|
];
|
|
IOWriteIOPSMax = [
|
|
"/dev/sda 100"
|
|
"/dev/sdb 100"
|
|
];
|
|
IODviceLatencyTargetSec = [
|
|
"/dev/sda 500ms"
|
|
"/dev/sdb 500ms"
|
|
];
|
|
};
|
|
|
|
users.users.nginx.extraGroups = [ cfg.group ];
|
|
|
|
services.nginx.virtualHosts = {
|
|
"top-level.${domain}".locations = {
|
|
"~ ^/ip[fn]s" = {
|
|
proxyPass = "http://127.0.0.1:${gwPort}";
|
|
extraConfig = ''
|
|
add_header X-Content-Type-Options "";
|
|
add_header Access-Control-Allow-Origin *;
|
|
'';
|
|
};
|
|
};
|
|
|
|
"lain-ipfs.${domain}" = vhosts.basic // {
|
|
locations = {
|
|
"= /".return = "404";
|
|
"~ ^/ip[fn]s" = {
|
|
proxyPass = "http://127.0.0.1:${gwPort}";
|
|
extraConfig = ''
|
|
add_header X-Content-Type-Options "";
|
|
add_header Access-Control-Allow-Origin *;
|
|
'';
|
|
};
|
|
"/ipfs".extraConfig = "expires max;";
|
|
};
|
|
};
|
|
"ipfs.admin.${domain}" = vhosts.basic // {
|
|
locations."/api".proxyPass = "http://unix:/run/ipfs/ipfs-api.sock:";
|
|
locations."/ipns/webui.ipfs.${domain}".proxyPass = "http://127.0.0.1:${gwPort}/ipns/webui.ipfs.${domain}";
|
|
locations."= /".return = "302 /ipns/webui.ipfs.${domain}";
|
|
locations."/debug/metrics/prometheus" = {
|
|
proxyPass = "http://unix:/run/ipfs/ipfs-api.sock:";
|
|
extraConfig = ''
|
|
access_log off;
|
|
auth_request off;
|
|
allow ${hosts.VEGAS.interfaces.primary.addr};
|
|
deny all;
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
services.oauth2_proxy.nginx.virtualHosts = [ "ipfs.admin.${domain}" ];
|
|
|
|
inherit (tools.acme.dns01) age;
|
|
|
|
security.acme.certs."ipfs.${domain}" = {
|
|
domain = "*.ipfs.${domain}";
|
|
extraDomainNames = [ "*.ipns.${domain}" ];
|
|
dnsProvider = "rfc2136";
|
|
group = "nginx";
|
|
inherit (tools.acme.dns01) credentialsFile;
|
|
};
|
|
|
|
services.nginx.virtualHosts."ipfs.${domain}" = vhosts.basic // {
|
|
serverName = "~^(.+)\.(ip[fn]s)\.${domain}$";
|
|
enableACME = false;
|
|
useACMEHost = "ipfs.${domain}";
|
|
locations = {
|
|
"/" = {
|
|
proxyPass = "http://127.0.0.1:${gwPort}";
|
|
extraConfig = ''
|
|
add_header X-Content-Type-Options "";
|
|
add_header Access-Control-Allow-Origin *;
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|