16 Apr 2025 |
hexa | it is annoying | 02:46:35 |
conr | ok sorry | 02:46:39 |
hexa | I am right here and it makes BLING every time | 02:46:41 |
conr | i won’t no m | 02:46:52 |
conr | anymore | 02:46:59 |
hexa | the traling backslashes imply line continuation | 02:47:16 |
hexa | they don't make sense | 02:47:21 |
conr | ok yeah if they are in a file then they don’t need to be | 02:47:45 |
conr | i think i almost got it, txt record created in porkbun but nix just hangs on restarting sysinit-reactivation.target | 03:11:39 |
conr | finally just had to wait 5mins | 03:25:45 |
| Alexandru Tocar joined the room. | 11:46:59 |
conr | i am getting a 502 gateway error with my HA web ui | 23:12:28 |
conr | i’m using nginx with reserve proxy | 23:13:52 |
hexa | check the nginx error log at /var/log/nginx/error.log | 23:15:15 |
conr | it is empty | 23:16:46 |
hexa | refreshing the page should produce another log entry if it fails | 23:18:44 |
conr | still nothing | 23:20:13 |
conr | does this config require ipv6? | 23:21:23 |
conr | proxyPass = "http://[::1]:8123"; | 23:22:45 |
conr | can i do http://127.0.0.1:8123 instead? | 23:23:15 |
hexa | ss -lpn | grep 8123 | 23:24:32 |
conr | nothing | 23:25:26 |
hexa | then home-assistant isn't up | 23:25:59 |
hexa | systemctl status home-assistant | 23:26:03 |
conr | it is | 23:26:33 |
conr | Active: active (running) since Tue 2025-04-15 22:37:35 CDT; 19h ago | 23:26:35 |
hexa | paste your home-assistant config | 23:27:00 |
hexa | did you start with an example from the wiki? | 23:27:12 |
hexa | services.home-assistant.config.http = {
server_host = "::1";
use_x_forwarded_for = true;
trusted_proxies = [ "::1" ];
};
| 23:27:45 |
conr | home-assistant = {
enable = true;
extraComponents = [
# Components required to complete the onboarding
"analytics"
"google_translate"
"met"
"radio_browser"
"shopping_list"
# Recommended for fast zlib compression
# https://www.home-assistant.io/integrations/isal
"isal"
];
config = {
# Includes dependencies for a basic setup
# https://www.home-assistant.io/integrations/default_config/
default_config = { };
http = {
server_host = "::1";
trusted_proxies = [ "::1" ];
use_x_forwarded_for = true;
};
};
};
| 23:28:25 |