caddy: fix indentation for static site

Fix by moving the inline HTML to a separate file and serve it using
`file_server` directive.
This commit is contained in:
Tigor Hutasuhut 2024-10-13 16:01:52 +07:00
parent da88afbb51
commit ed60032f75

View file

@ -1,4 +1,4 @@
{ config, lib, ... }:
{ config, lib, unstable, ... }:
let
cfg = config.profile.services.caddy;
inherit (lib) mkIf attrsets strings lists;
@ -7,6 +7,7 @@ in
config = mkIf cfg.enable {
services.caddy = {
enable = true;
package = unstable.caddy;
};
services.caddy.globalConfig = /*caddy*/ ''
@ -15,7 +16,8 @@ in
}
'';
services.caddy.virtualHosts =
environment.etc."caddy/static/tigor.web.id/index.html" = {
text =
let
domains = attrsets.mapAttrsToList (name: _: strings.removePrefix "https://" name) config.services.caddy.virtualHosts;
sortedDomains = lists.sort (a: b: a < b) domains;
@ -23,11 +25,13 @@ in
(domain: /*html*/ ''
<div class="col-12 col-sm-6 col-md-4 col-lg-3 text-center align-middle">
<a href="https://${domain}">${domain}</a>
</div>'')
</div>
'')
sortedDomains;
items = strings.concatStringsSep "\n" list;
html = /*html*/
''<!DOCTYPE html>
in
/*html*/ ''
<!DOCTYPE html>
<html>
<head>
<title>Hosted Sites</title>
@ -43,8 +47,13 @@ in
${items}
</div>
</body>
</html>'';
in
</html>
'';
user = "caddy";
group = "caddy";
};
services.caddy.virtualHosts =
{
"router.tigor.web.id".extraConfig = ''
@denied not remote_ip private_ranges
@ -55,17 +64,13 @@ in
'';
"tigor.web.id".extraConfig =
''
header Content-Type text/html
respond <<EOF
${html}
EOF 200
root * /etc/caddy/static/tigor.web.id
file_server
'';
"crowfx.web.id".extraConfig =
''
header Content-Type text/html
respond <<EOF
${html}
EOF 200
root * /etc/caddy/static/tigor.web.id
file_server
'';
};