1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/headscale_ynh.git synced 2024-09-03 19:25:53 +02:00

Return 200 at root to please CI

This commit is contained in:
tituspijean 2023-06-11 17:52:20 +02:00
parent 1834491cb8
commit 2308ea4630
No known key found for this signature in database
GPG key ID: EF3B0D7CC0A94720

View file

@ -1,3 +1,9 @@
rewrite ^$ /;
location ~ ^/$ {
default_type text/plain;
return 200 "This is where Headscale is installed.";
}
location / {
proxy_pass http://127.0.0.1:__PORT__;
proxy_redirect http:// https://;