tangled
alpha
login
or
join now
koi.rip
/
dotfiles
0
fork
atom
my nixos dotfiles :3 (git.koi.rip mirror)
git.koi.rip/koi/dotfiles
linux
dotfiles
neovim
nixos
catppuccin
0
fork
atom
overview
issues
pulls
pipelines
seber: add start.robinwobin.dev
koi.rip
2 weeks ago
705e8af8
fa27518f
+14
1 changed file
expand all
collapse all
unified
split
systems
seber
services
robin.nix
+14
systems/seber/services/robin.nix
···
53
53
root = "/var/ebil.club/robin/robin.ebil.club";
54
54
extraConfig = "try_files /index.txt @curl_fallback;";
55
55
};
56
56
+
"/start.robinwobin.dev".return = "302 https://start.robinwobin.dev";
56
57
"@curl_fallback".return =
57
58
"200 'hi! this site is best viewed in a web browser :3 if u still want to curl it, try setting a different user-agent header'";
58
59
};
59
60
extraConfig = "error_page 404 /404.html;";
61
61
+
}
62
62
+
// tls
63
63
+
);
64
64
+
"start.robinwobin.dev" = (
65
65
+
{
66
66
+
locations = {
67
67
+
"/" = {
68
68
+
root = "/var/ebil.club/robin/robin.ebil.club/start.robinwobin.dev";
69
69
+
index = "index.html";
70
70
+
extraConfig = "try_files $uri $uri/ @fallback;";
71
71
+
};
72
72
+
"@fallback".return = "302 https://robinwobin.dev$request_uri";
73
73
+
};
60
74
}
61
75
// tls
62
76
);