attic: nginx+attic cli
This commit is contained in:
parent
75af9cd046
commit
51c1ce5812
1 changed files with 22 additions and 1 deletions
|
@ -1,6 +1,11 @@
|
||||||
{ config, secret, ... }:
|
{ pkgs, config, secret, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
fqdn = "attic.cache.daniel.sx";
|
||||||
|
in
|
||||||
{
|
{
|
||||||
|
environment.systemPackages = [ pkgs.attic ];
|
||||||
|
|
||||||
services.atticd = {
|
services.atticd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
|
@ -9,6 +14,9 @@
|
||||||
settings = {
|
settings = {
|
||||||
listen = "127.0.0.1:8080";
|
listen = "127.0.0.1:8080";
|
||||||
|
|
||||||
|
allowed-hosts = [ "${fqdn}" ];
|
||||||
|
api-endpoint = "https://${fqdn}/";
|
||||||
|
|
||||||
storage = {
|
storage = {
|
||||||
type = "s3";
|
type = "s3";
|
||||||
region = "eu-central-1";
|
region = "eu-central-1";
|
||||||
|
@ -29,4 +37,17 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.nginx.virtualHosts."${fqdn}" = {
|
||||||
|
quic = true;
|
||||||
|
http3 = true;
|
||||||
|
|
||||||
|
onlySSL = true;
|
||||||
|
useACMEHost = "cache.daniel.sx";
|
||||||
|
|
||||||
|
locations."/" = {
|
||||||
|
recommendedProxySettings = true;
|
||||||
|
proxyPass = "http://127.0.0.1:8080";
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue