BlackSpirit
BlackSpirit
HHomarr
Created by BlueFoot on 10/7/2023 in #💬・get-help
dash https
I just have one iFrame for each widget, works pretty welll, only issue is there are not headers or indicators, just graph, but other thatn that, it's alright, the docs also have a widget creator which you can use to generate the iFrame src https://getdashdot.com/docs/integration/widgets#widget-creator
56 replies
HHomarr
Created by BlueFoot on 10/7/2023 in #💬・get-help
dash https
So I believe the key issue is that when you use the Dash. Widget integration is the following: When you set it up, Homarr tries to do a backend api call to dash before anything. I use forward authentication and trying that would always result in an error 500 being thrown and nothing being rendered in the dash. Widget. When I however manually set the iFrames then it works fine. You can consult the documentation of dash. To get the matching graphs etc. Only issue is Homarr has custom network and disk space components which you can’t access unless you use the dash. Widget which doesn’t work as described above for me
56 replies
HHomarr
Created by StLCards on 11/16/2023 in #💬・get-help
Doplarr App and URL vs IP Address
I don’t think so unless doplarr has something that can respond to http requests. Homarr doesn’t do ping‘s but it actually does an http request to check if the app is up or down
12 replies
HHomarr
Created by StLCards on 11/16/2023 in #💬・get-help
Doplarr App and URL vs IP Address
Secondly, What are you even trying to do? Doplarr doesn’t have an http server you can send requests to does it? So homarr wont be able to do much with it because the ping check sends http requests If you want to monitor up/down states of containers there is probably other solutions for that out there, like uptime-Kuma
12 replies
HHomarr
Created by StLCards on 11/16/2023 in #💬・get-help
Doplarr App and URL vs IP Address
First off, you can’t ping specific ports, I‘m pretty sure it’s either hostname or IP, but no protocol or anything
12 replies
HHomarr
Created by TheZombieKing1 on 11/15/2023 in #💬・get-help
Url does not go to default dashboard
maybe try restarting your homarr container entirely and see if any error pop up there
33 replies
HHomarr
Created by TheZombieKing1 on 11/15/2023 in #💬・get-help
Url does not go to default dashboard
I don't believe the logs are written to a file
33 replies
HHomarr
Created by TheZombieKing1 on 11/15/2023 in #💬・get-help
Url does not go to default dashboard
Usually this error is accompanied by other errors in the logs, I think anyways. So maybe see if you spot anything else? Other than that, I'm out my depth in terms of troubleshooting, so might need someone else to help you figure out why you have such an inconsistent session behaviour
33 replies
HHomarr
Created by TheZombieKing1 on 11/15/2023 in #💬・get-help
Url does not go to default dashboard
but it could be your browser cleaning it up as well
33 replies
HHomarr
Created by TheZombieKing1 on 11/15/2023 in #💬・get-help
Url does not go to default dashboard
It does persist your login session though from what I can tell
33 replies
HHomarr
Created by TheZombieKing1 on 11/15/2023 in #💬・get-help
Url does not go to default dashboard
You should be able to tell if you are logged in or not by checking the top right and wether it displays your initial or a generic user icon
33 replies
HHomarr
Created by TheZombieKing1 on 11/15/2023 in #💬・get-help
Url does not go to default dashboard
Right now I believe you can set a default dashboard on a per (logged in) user basis. However, for not authenticated users, the current default is hardcoded to "default" and can not be changed as of now. I do however believe there are plans to change that in the future, but don't quote me on that
33 replies
HHomarr
Created by Happles on 11/14/2023 in #💬・get-help
Plex Integration Help
I also think this has to do with firewall. An easy step to verify the is is the following: - turn firewall off entirely - try connecting to plex again - if it works now it’s definitely the firewalls and we have tk figure out what rule we need to apply
37 replies
HHomarr
Created by Killian on 11/10/2023 in #💬・get-help
don't work after update.
How can we help?
111 replies
HHomarr
Created by Killian on 11/10/2023 in #💬・get-help
don't work after update.
Hi there, had some issue with my reverse proxy, ended up having to add a location block to my config for the api routes that excludes auth essentially
location ~ /api {
include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf;
set $upstream_app homarr;
set $upstream_port 7575;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;

}
location ~ /api {
include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf;
set $upstream_app homarr;
set $upstream_port 7575;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;

}
hope this helps ya
111 replies