Home Assistant Community Add-on: Nginx Proxy Manager
guys, i’m tryng to understand this nginx add-on, why do you use it? whats different with lets encrypt? i want to buy a google domain, to easy access my HA instance with valid ssl, i also need the ssl...
View ArticleHome Assistant Community Add-on: Nginx Proxy Manager
pergola.fabio: what benefit does it have againts a normal lets encrypt addon? With the let’s encrypt addon you will only have https access to Home Assistant. So when you contact it from outside...
View ArticleHome Assistant Community Add-on: Nginx Proxy Manager
ok, that makes more sense, but why do you want http for local, why not just https for both external and internal? Read full topic
View ArticleHome Assistant Community Add-on: Nginx Proxy Manager
pergola.fabio: why not just https for both external and internal? Because it can not work correctly as I wrote above! A SSL certificate is only for the full qualified name of the device, not for the...
View ArticleHome Assistant Community Add-on: Nginx Proxy Manager
yeah , i get that, but why do you still want to use the IP address for local access, why not just use the https with fqdn for internal access? isnt the router aware that its actually a local device?...
View ArticleHome Assistant Community Add-on: Nginx Proxy Manager
pergola.fabio: why not just use the https with fqdn for internal access? isnt the router aware that its actually a local device? I don’t know if this works. Read full topic
View ArticleHome Assistant Community Add-on: Nginx Proxy Manager
You can use the domain for both internal and external as long as your router supports NAT loopback Read full topic
View ArticleHome Assistant Community Add-on: Nginx Proxy Manager
Ok, then just let’s encrypt is fine for me, then I don’t need nginx Read full topic
View ArticleHome Assistant Community Add-on: Nginx Proxy Manager
It also provides an additional level of security with the reverse proxy and you only need 1 port for everything opened. (you also don’t need port 80 for certificate renewal) Personally I use Caddy as...
View ArticleHome Assistant Community Add-on: Nginx Proxy Manager
Perfect, thnx for all feedback, gonna buy a Google domain and use let’s encrypt based on DNS… No port 80 needed then for renewal Read full topic
View ArticleHome Assistant Community Add-on: Nginx Proxy Manager
Is it possible to expose the configured proxies in NPM through switches in Home Assistant? So I can automate for example the exposure of some of my services when I’m leaving/coming home? Concrete...
View ArticleHome Assistant Community Add-on: Nginx Proxy Manager
I don’t think it is possible to control individual hosts however you can set a command line switch in HA to reload nginx with a different config. Read full topic
View ArticleHome Assistant Community Add-on: Nginx Proxy Manager
Hi All, Can someone tell me if it is possible to connect NPM to a external MariaDB server? I want make use of a external server and connect NPM to it. In the documentation it says: You need install...
View ArticleHome Assistant Community Add-on: Nginx Proxy Manager
Probably not what you wanted but you can have NPM installed on a regular Docker and with manual DB connection instead of HA addon. Read full topic
View ArticleHome Assistant Community Add-on: Nginx Proxy Manager
I’m trying to use Nginx Proxy Manager to create a connection to my Blue Iris server. I have followed this tutorial to a “T” but am still having issues that I think are caused by Nginx Proxy Manager. I...
View ArticleHome Assistant Community Add-on: Nginx Proxy Manager
Ports 443 and 80 should be forwarded to 443 and 80 of the 192.168.1.100 host (the one that runs NPM; it also runs HA, but that’s beside the point). Port 81 does not need to be forwarded. Read full topic
View ArticleHome Assistant Community Add-on: Nginx Proxy Manager
I have tried forwarding 80 to and 443 to 443 like this But when I do that and then go to http://myha.duckdns.org OR https://myha.duckdns.org I just get this screen with no login. I get to the same...
View ArticleHome Assistant Community Add-on: Nginx Proxy Manager
Do you have the trusted proxies set in configuration.yaml? Home Assistant HTTP Offers a web framework to serve files. http: ....some other stuff... trusted_proxies: - 192.168.1.100 - 172.30.33.0/24...
View ArticleHome Assistant Community Add-on: Nginx Proxy Manager
I did not have the trusted proxies input. I added it: http: ssl_certificate: /ssl/fullchain.pem ssl_key: /ssl/privkey.pem trusted_proxies: - 192.168.1.100 - 172.30.33.0/24 But when I check my config I...
View ArticleHome Assistant Community Add-on: Nginx Proxy Manager
First two lines after http: mean that HA is in charge of ensuring secure communication and thus not compatible with the proxying (basically, now you have HA and NPM fighting over the use of port 443)....
View Article