Add ip tool to web-2
This commit is contained in:
parent
e0f8f4d79a
commit
fd730f837c
@ -6,6 +6,7 @@
|
||||
./hardware-configuration.nix
|
||||
../../configuration/common
|
||||
./bubblesort.nix
|
||||
./ip.nix
|
||||
./meow.nix
|
||||
];
|
||||
|
||||
|
80
hosts/web-2/ip.nix
Normal file
80
hosts/web-2/ip.nix
Normal file
@ -0,0 +1,80 @@
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
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";
|
||||
'';
|
||||
};
|
||||
};
|
||||
"ip4.clerie.de" = {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
locations."/" = {
|
||||
return = ''200 "$remote_addr\n"'';
|
||||
extraConfig = ''
|
||||
types { } default_type "text/plain; charset=utf-8";
|
||||
add_header Access-Control-Allow-Origin *;
|
||||
'';
|
||||
};
|
||||
};
|
||||
"ip6.clerie.de" = {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
locations."/" = {
|
||||
return = ''200 "$remote_addr\n"'';
|
||||
extraConfig = ''
|
||||
types { } default_type "text/plain; charset=utf-8";
|
||||
add_header Access-Control-Allow-Origin *;
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user