configuration.nix/hosts/rico2/services/wiki.nix

36 lines
627 B
Nix
Raw Normal View History

2023-11-04 16:12:45 +05:30
{ pkgs
, wiki
, ...
}:
let
2023-11-03 18:16:02 +05:30
system = pkgs.system;
2023-11-04 16:12:45 +05:30
in
{
2023-10-28 05:13:11 +05:30
services = {
caddy.virtualHosts = {
"wiki.adtya.xyz" = {
extraConfig = ''
2023-11-03 18:16:02 +05:30
root * ${wiki.packages.${system}.default}/share/web
2023-10-28 05:13:11 +05:30
encode gzip
try_files {path} /index.html
file_server
'';
};
};
frp.settings = {
"http.wiki.adtya.xyz" = {
type = "http";
custom_domains = "wiki.adtya.xyz";
local_port = 80;
};
"https.wiki.adtya.xyz" = {
type = "https";
custom_domains = "wiki.adtya.xyz";
local_port = 443;
};
};
};
}