68 lines
1.6 KiB
Nix
68 lines
1.6 KiB
Nix
{ pkgs
|
|
, adtyaxyz
|
|
, ...
|
|
}:
|
|
let
|
|
inherit (pkgs) system;
|
|
in
|
|
{
|
|
services = {
|
|
caddy.virtualHosts."adtya.xyz" = {
|
|
serverAliases = [ "www.adtya.xyz" ];
|
|
extraConfig = ''
|
|
handle /.well-known/matrix/server {
|
|
header Content-Type application/json
|
|
header Access-Control-Allow-Origin *
|
|
respond `{"m.server": "matrix.adtya.xyz:443"}`
|
|
}
|
|
|
|
handle /.well-known/matrix/client {
|
|
header Content-Type application/json
|
|
header Access-Control-Allow-Origin *
|
|
respond `{"m.homeserver": {"base_url": "https://matrix.adtya.xyz:443"}}`
|
|
}
|
|
|
|
handle /.well-known/discord {
|
|
header Access-Control-Allow-Origin *
|
|
respond `dh=bd67bb4659b662a5ee2b1b043e7b3171b2cb44bd`
|
|
}
|
|
|
|
handle {
|
|
root * ${adtyaxyz.packages.${system}.default}/share/web
|
|
encode gzip
|
|
try_files {path} /index.html
|
|
file_server
|
|
}
|
|
'';
|
|
};
|
|
frp.settings = {
|
|
"http.adtya.xyz" = {
|
|
type = "http";
|
|
custom_domains = "adtya.xyz";
|
|
local_port = 80;
|
|
proxy_protocol_version = "v2";
|
|
};
|
|
|
|
"https.adtya.xyz" = {
|
|
type = "https";
|
|
custom_domains = "adtya.xyz";
|
|
local_port = 443;
|
|
proxy_protocol_version = "v2";
|
|
};
|
|
|
|
"http.www.adtya.xyz" = {
|
|
type = "http";
|
|
custom_domains = "www.adtya.xyz";
|
|
local_port = 80;
|
|
proxy_protocol_version = "v2";
|
|
};
|
|
|
|
"https.www.adtya.xyz" = {
|
|
type = "https";
|
|
custom_domains = "www.adtya.xyz";
|
|
local_port = 443;
|
|
proxy_protocol_version = "v2";
|
|
};
|
|
};
|
|
};
|
|
}
|