mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-12-10 07:59:43 +00:00
feat(y2q): add cloudflared
- Add cloudflared runit service - Serve opengist via Cloudflare tunnel
This commit is contained in:
parent
3b3476c110
commit
fb9b981a1d
3 changed files with 25 additions and 0 deletions
25
home/modules/runit/services/cloudflared.nix
Normal file
25
home/modules/runit/services/cloudflared.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ pkgs, config, rootPath, ... }:
|
||||
|
||||
let
|
||||
tunnel = "cb0d9c2c-48f9-4bca-9e81-ef92423c5afa";
|
||||
in
|
||||
{
|
||||
home.file.".cloudflared/${tunnel}.json".source = rootPath + /secrets/gitcrypt/cloudflared/${tunnel}.json;
|
||||
home.file.".cloudflared/cert.pem".source = rootPath + /secrets/gitcrypt/cloudflared/cert.pem;
|
||||
home.file.".cloudflared/config.yml".text = ''
|
||||
tunnel: ${tunnel}
|
||||
credentials-file: ${config.home.homeDirectory}/.cloudflared/${tunnel}.json
|
||||
|
||||
ingress:
|
||||
- hostname: gist.toast.name
|
||||
service: http://${config.runit.services.opengist.environment.OG_HTTP_HOST}:${config.runit.services.opengist.environment.OG_HTTP_PORT}
|
||||
- service: http_status:404
|
||||
'';
|
||||
|
||||
runit.services.cloudflared = {
|
||||
script = ''
|
||||
exec ${pkgs.cloudflared}/bin/cloudflared tunnel run
|
||||
'';
|
||||
log.enable = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue