From 2308ea4630a4e95ec19518d696bd10cdadedf45a Mon Sep 17 00:00:00 2001 From: tituspijean Date: Sun, 11 Jun 2023 17:52:20 +0200 Subject: [PATCH] Return 200 at root to please CI --- conf/nginx.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/conf/nginx.conf b/conf/nginx.conf index fb3e482..09c51d4 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -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://;