feat: deployed application to tor

This commit is contained in:
Leyla Becker 2026-02-11 18:57:53 -06:00
parent a330ae2b1c
commit 804cafad27
4 changed files with 92 additions and 13 deletions

View file

@ -35,8 +35,40 @@
services.volpe = {
enable = true;
domain = "blog.jan-leila.com";
extraDomains = ["volpe.jan-leila.com"];
extraDomains = [
"volpe.jan-leila.com"
"2ggpzgonqsll5gi56u47aywu4qyl37eiu5jjrq7ma43z77ekkwuqxmid.onion"
];
enableACME = true;
acmeEmail = "leyla@jan-leila.com";
};
services.tor = {
enable = true;
enableGeoIP = false;
relay.onionServices = {
volpe = {
version = 3;
map = [
{
port = 80;
target = {
addr = "[::1]";
port = 80;
};
}
];
};
};
settings = {
ClientUseIPv4 = true;
ClientUseIPv6 = true;
ClientPreferIPv6ORPort = true;
};
};
services.snowflake-proxy = {
enable = true;
capacity = 100;
};
}