mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-12-10 03:49:44 +00:00
feat(y2q): add caddy
- Add a runit service for Caddy with a Caddyfile - Update cloudflared runit service: - Add support for multiple subdomains using dynamic YAML generation - Each subdomain routes to Caddy running on localhost (port 8080)
This commit is contained in:
parent
431847b59f
commit
cee1c9bc5d
2 changed files with 41 additions and 5 deletions
32
home/modules/runit/services/caddy.nix
Normal file
32
home/modules/runit/services/caddy.nix
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
{ pkgs, config, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.file.".config/caddy/Caddyfile".text = ''
|
||||||
|
{
|
||||||
|
http_port 8080
|
||||||
|
https_port 8443
|
||||||
|
auto_https off
|
||||||
|
}
|
||||||
|
|
||||||
|
# Cloudflare Tunnel
|
||||||
|
http://gist.toast.name {
|
||||||
|
# Opengist
|
||||||
|
reverse_proxy http://localhost:${config.runit.services.opengist.environment.OG_HTTP_PORT}
|
||||||
|
}
|
||||||
|
|
||||||
|
# Tailscale
|
||||||
|
http://y2q.ts.toast.name {
|
||||||
|
# Glances
|
||||||
|
reverse_proxy http://localhost:61208
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
|
||||||
|
runit.services.caddy = {
|
||||||
|
script = ''
|
||||||
|
exec ${pkgs.caddy}/bin/caddy run \
|
||||||
|
--config "$HOME/.config/caddy/Caddyfile" \
|
||||||
|
--adapter caddyfile
|
||||||
|
'';
|
||||||
|
log.enable = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -1,7 +1,10 @@
|
||||||
{ pkgs, config, rootPath, ... }:
|
{ pkgs, config, rootPath, lib, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
tunnel = "cb0d9c2c-48f9-4bca-9e81-ef92423c5afa";
|
tunnel = "cb0d9c2c-48f9-4bca-9e81-ef92423c5afa";
|
||||||
|
subdomains = [
|
||||||
|
"gist.toast.name"
|
||||||
|
];
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
home.file.".cloudflared/${tunnel}.json".source = rootPath + /secrets/gitcrypt/cloudflared/${tunnel}.json;
|
home.file.".cloudflared/${tunnel}.json".source = rootPath + /secrets/gitcrypt/cloudflared/${tunnel}.json;
|
||||||
|
|
@ -11,10 +14,11 @@ in
|
||||||
credentials-file: ${config.home.homeDirectory}/.cloudflared/${tunnel}.json
|
credentials-file: ${config.home.homeDirectory}/.cloudflared/${tunnel}.json
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
- hostname: gist.toast.name
|
${lib.concatMapStringsSep "\n" (host: ''
|
||||||
service: http://${config.runit.services.opengist.environment.OG_HTTP_HOST}:${config.runit.services.opengist.environment.OG_HTTP_PORT}
|
${" "}- hostname: ${host}
|
||||||
|
${" "} service: http://localhost:80
|
||||||
- service: http_status:404
|
'') subdomains}
|
||||||
|
${" "}- service: http_status:404
|
||||||
'';
|
'';
|
||||||
|
|
||||||
runit.services.cloudflared = {
|
runit.services.cloudflared = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue