1
0
Files
configuration
flake
hosts
_iso
aluminium
astatine
backup-4
beryllium
carbon
clerie-backup
dn42-il-gw1
dn42-il-gw5
dn42-il-gw6
dn42-ildix-clerie
dn42-ildix-service
gatekeeper
hydra-1
hydra-2
krypton
mail-2
monitoring-3
nonat
osmium
palladium
porter
storage-2
tungsten
web-2
blog.nix
bula22.nix
chaosevents.nix
clerie.nix
configuration.nix
drop.nix
etebase.nix
feeds.nix
fieldpoc.nix
gitea.nix
hardware-configuration.nix
ip.nix
legal.nix
meow.nix
milchinsel.nix
mitel-ommclient2.nix
nix-install.nix
nurausstieg.nix
ping.nix
public.nix
radicale.nix
reichartstrasse.nix
secrets.json
ssh.pub
uptimestatus.nix
wetter.nix
zinc
lib
modules
pkgs
profiles
users
.gitignore
README.md
flake.lock
flake.nix
nixfiles/hosts/web-2/ip.nix

90 lines
2.7 KiB
Nix

{ ... }:
{
services.nginx.virtualHosts = {
"ip.clerie.de" = {
enableACME = true;
forceSSL = true;
locations."= /" = {
return = ''200 '
<html>
<head>
<title>ip.clerie.de</title>
<script>
function httpGet(url, loaded, error) {
var xmlHttp = new XMLHttpRequest();
xmlHttp.open("GET", url + ((/\?/).test(url) ? "&" : "?") + (new Date()).getTime(), true);
xmlHttp.onload = () => {
if(xmlHttp.status == 200) {
loaded(xmlHttp.responseText);
}
else {
error();
}
};
xmlHttp.onerror = () => {error();};
xmlHttp.send(null);
}
function setText(id, text) {
document.getElementById(id).innerText = text;
}
httpGet("https://ip4.clerie.de/",
(response) => {setText("ip4", response);},
() => {setText("ip4", "Error");}
);
httpGet("https://ip6.clerie.de/",
(response) => {setText("ip6", response);},
() => {setText("ip6", "Error");}
);
</script>
</head>
<body>
<h1>ip.clerie.de</h1>
<ul>
<li><b>IPv6:</b> <span id="ip6">Loading...</span></li>
<li><b>IPv4:</b> <span id="ip4">Loading...</span></li>
</ul>
<p>Use bash and curl: <code>curl ip{4,6}.clerie.de</code></p>
<p><small>Because any other "Whats my IP?"-tool sucks. <a href="https://git.clerie.de/clerie/ip.clerie.de">Host yourself :3</a></small></p>
</body>
</html>'
'';
extraConfig = ''
types { } default_type "text/html; charset=utf-8";
'';
};
extraConfig = ''
access_log /var/log/nginx/ip.clerie.de.log vcombined_anon;
'';
};
"ip4.clerie.de" = {
enableACME = true;
addSSL = true;
locations."= /" = {
return = ''200 "$remote_addr\n"'';
extraConfig = ''
types { } default_type "text/plain; charset=utf-8";
add_header Access-Control-Allow-Origin *;
'';
};
extraConfig = ''
access_log /var/log/nginx/ip.clerie.de.log vcombined_anon;
'';
};
"ip6.clerie.de" = {
enableACME = true;
addSSL = true;
locations."= /" = {
return = ''200 "$remote_addr\n"'';
extraConfig = ''
types { } default_type "text/plain; charset=utf-8";
add_header Access-Control-Allow-Origin *;
'';
};
extraConfig = ''
access_log /var/log/nginx/ip.clerie.de.log vcombined_anon;
'';
};
};
}