1
0
Fork 0

Add ping.clerie.de website

This commit is contained in:
clerie 2022-08-25 23:22:05 +02:00
parent fbc60e98b9
commit 601b5fe8c1
1 changed files with 14 additions and 3 deletions

View File

@ -5,12 +5,26 @@
"ping.clerie.de" = {
enableACME = true;
addSSL = true;
root = fetchGit {
url = "https://git.clerie.de/clerie/ping.clerie.de.git";
ref = "main";
rev = "c9c0849e1f63fd2e3aeeba8ce19ec44065a5d563";
};
/*
locations."= /" = {
return = ''200 "This domain is used for connectivity checking and captive portal detection\n"'';
extraConfig = ''
types { } default_type "text/plain; charset=utf-8";
'';
};
*/
locations."= /ping" = {
return = ''201'';
extraConfig = ''
types { } default_type "text/plain; charset=utf-8";
add_header Access-Control-Allow-Origin *;
'';
};
locations."= /nm-check.txt" = {
return = ''200 "NetworkManager is online\n"'';
extraConfig = ''
@ -26,9 +40,6 @@
add_header Cache-Control "max-age=0, must-revalidate";
'';
};
locations."/" = {
return = ''404'';
};
extraConfig = ''
access_log off;
'';