Everything posted by jpfordtc
-
[Support] Headscale - An open source, self-hosted implementation of the Tailscale control server
Headscale has been running fine for months, however recently I have been unable to access the console. When I open it, it closes immediately. I have tried on another machine with the same result (separate headscale instance). Headscale itself is running properly except I need command line access to generate new users...
-
GUI no longer starts
Good day, I restored the pool file from a previous self-diagnostic, and that fixed it (no changes to the pool). I was then able to do a reboot with no more issues. Thank you for the help. I have removed my diag file from the first post.
-
GUI no longer starts
Good day, my UNRAID-GUI no longer starts, I cannot access from the Web, nor can I access from the server directly. Here is what I tried: 1. I disable SSL via the /boot/ident.cfg file 2. Tried: /etc/rc.d/rc.nginx reload (At this step, I was told the server deamon was not running, so I tried start) 3. Tried /etc/rc.d/rc.php-fpm start (was not running either). From there, I can login on port 80, but every other webpage is completely blank. I am at lost, so I included the diagnostics. I hope you guys can help me. For some reson, the diagnostics file from today call my server TOWER, when it had a different name before. I have no clue was is going on. Please help if you can.
-
[Support] Headscale-admin - A UI for headscale
First of all, thank you for providing this thread. My configuration: Headscale runs on port 1111 (http) Headscale-Admin runs on port 1112 (http). My Domain is a subdomain.duckdns.org which is managed by the NGIXProxyManager (jlesage/nginx-proxy-manager). My configuration in there is as follows: subdomain.duckdns.org points to internalserverip:1111 and has an https certificate by Lets Encrypt. Under Custom Locations, I pointed "subdomain.duckdns.org/admin" to internalserverip:1112. Headscale is working properly on the subdomain, and I have no issues connecting from a remote location. However no luck in accessing the admin panel. If I point to internalserverip:1112 on my lan, I can see the settings page (and only the setting page nothing else seems to work even if I put the token). Howeever if I use subdomain.duckdns.org/admin, I get a blank page only. I think that the configuration I am using is probably not amongst the recommended ones, but can you advise on what I am doing wrong? Thank you for your help. Edit: I was able to solve the issue in the following manner: Do not put anything under "Custom Locations" Put the followinger in your advanced config: location ^~ /admin/ { proxy_pass http://headscale-admin-ip:port/admin/; proxy_redirect http:// https://; ; location ^~ /admin/ { proxy_pass http://headscale-admin-ip:port/admin/; proxy_redirect http:// https://; } With special thanks to this blog post: https://www.lucasjanin.com/2025/01/03/headscale-tailscale-in-a-self-hosted-environment/