i just wanna die

This commit is contained in:
Osman Faruk Bayram 2025-04-13 15:37:12 +03:00
parent c782101e96
commit e59dbbc74f
2 changed files with 16 additions and 16 deletions

View file

@ -23,13 +23,13 @@
hash = "sha256-YYpsf8HMONR1teMiSymo2y+HrKoxuJMKIea5/NEykGc=";
};
email = "contact@osbm.dev";
extraConfig = ''
(cloudflare) {
tls {
dns cloudflare {env.CLOUDFLARE_API_TOKEN}
}
}
'';
# extraConfig = ''
# (cloudflare) {
# tls {
# dns cloudflare {env.CLOUDFLARE_API_TOKEN}
# }
# }
# '';
virtualHosts = {
"chat.osbm.dev" = {
extraConfig = ''
@ -39,7 +39,15 @@
"aifred.osbm.dev" = {
extraConfig = ''
reverse_proxy localhost:8000
import cloudflare
'';
};
"git.osbm.dev" = {
serverAliases = [
"git.osbm.dev"
"www.git.osbm.dev"
];
extraConfig = ''
reverse_proxy pochita.curl-boga.ts.net:${toString config.services.forgejo.settings.server.HTTP_PORT}
'';
};
};

View file

@ -26,14 +26,6 @@
};
};
})
# if enableForgejo and enableCaddy are enabled, add forgejo to caddy
(lib.mkIf (config.myModules.enableForgejo && config.myModules.enableCaddy) {
services.caddy.virtualHosts."git.osbm.dev" = {
extraConfig = ''
reverse_proxy pochita.curl-boga.ts.net:${toString config.services.forgejo.settings.server.HTTP_PORT}
import cloudflare
'';
};
})
];
}