🎨 move to nixfmt-rfc-style
This commit is contained in:
@ -10,7 +10,11 @@
|
||||
kubo = {
|
||||
enable = true;
|
||||
settings = {
|
||||
Discovery = { MDNS = { Enabled = true; }; };
|
||||
Discovery = {
|
||||
MDNS = {
|
||||
Enabled = true;
|
||||
};
|
||||
};
|
||||
Swarm = {
|
||||
AddrFilters = null;
|
||||
ConnMgr = {
|
||||
|
@ -17,8 +17,14 @@ _:
|
||||
"/ip6/::/udp/4001/quic"
|
||||
];
|
||||
};
|
||||
API = { HTTPHeaders = { Access-Control-Allow-Origin = [ "*" ]; }; };
|
||||
Routing = { Type = "dht"; };
|
||||
API = {
|
||||
HTTPHeaders = {
|
||||
Access-Control-Allow-Origin = [ "*" ];
|
||||
};
|
||||
};
|
||||
Routing = {
|
||||
Type = "dht";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
@ -40,9 +40,17 @@ in
|
||||
kubo = {
|
||||
enable = true;
|
||||
settings = {
|
||||
Discovery = { MDNS = { Enabled = false; }; };
|
||||
Peering = { Peers = peers; };
|
||||
Swarm = { AddrFilters = null; };
|
||||
Discovery = {
|
||||
MDNS = {
|
||||
Enabled = false;
|
||||
};
|
||||
};
|
||||
Peering = {
|
||||
Peers = peers;
|
||||
};
|
||||
Swarm = {
|
||||
AddrFilters = null;
|
||||
};
|
||||
};
|
||||
};
|
||||
nginx = {
|
||||
@ -50,14 +58,18 @@ in
|
||||
virtualHosts."walkah.cloud" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = { proxyPass = "http://127.0.0.1:8080"; };
|
||||
locations."/" = {
|
||||
proxyPass = "http://127.0.0.1:8080";
|
||||
};
|
||||
};
|
||||
|
||||
# Hosted Sites
|
||||
virtualHosts."walkah.net" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = { proxyPass = "http://127.0.0.1:8080"; };
|
||||
locations."/" = {
|
||||
proxyPass = "http://127.0.0.1:8080";
|
||||
};
|
||||
serverAliases = [
|
||||
"www.walkah.net"
|
||||
];
|
||||
|
Reference in New Issue
Block a user