Home Assistant Remote Access using NGINX Reverse Proxy & DuckDNS - Kiril Peyanski's Blog (2024)

Hello, this article will be a step-by-step tutorial of how to setup secure Home Assistant remote access using NGINX reverse proxy & DuckDNS.

In other words you will be able to access your Home Assistant via encrypted connection with a legit, trusted certificate when you are outside your local network, but at the same time when you are connected to your local home network you will still be able to use the regular non-encrypted HTTP connection giving you the best possible speed, without any latencies and delays. The best of all – it is all totally free.

Table of Contents

Home Assistant Remote Access using reverse proxy DuckDNS & NGINX – prerequisites

For this tutorial you will need a working Home Assistant with Supervisor & Add-ons store. That means, your installation type should be either Home Assistant OS or Home Assistant Supervised.

Quick Tip: If you want to know more about the different official and not so official Home Assistant installation types, then you can check my free Webinar available at https://automatelike.pro/webinar. Go watch that Webinar and you will become a Home Assistant installation type expert.

Back to the requirements for our Home Assistant remote access using NGINX reverse proxy & DuckDNS project. The next and final requirement is: access to your router interface as we will do one quick port forward rule, but more on that later, because now we will continue with DuckDNS domain creation.

How to create DuckDNS sub-domain?

Creating a DuckDNS is free and easy. All you have to do is the following:

  1. Go to https:///duckdns.org and login with any of the available options (I used Twitter)
  2. Type a unique domain of your choice and click on Add Domain. I will use smash-the-like.duckdns.org domain for the rest of this demo.
    Home Assistant Remote Access using NGINX Reverse Proxy & DuckDNS - Kiril Peyanski's Blog (1).
  3. After that, if it is needed, update the current ip field with your real IP address (usually duckdns auto detect that field, so you don’t have to do anything).
  4. Then copy somewhere safe the generated token.

What is your favorite?

DuckDNS domain is created, but can you share what is your favorite Dynamic DNS service? Is it a DuckDNS, or it is a No-IP or FreeDNS or maybe something completely different. Let me know in the comments section below.

How to install Home Assistant DuckDNS add-on?

Next step is to install and configure the Home Assistant DuckDNS add-on. This is very easy and fast.

Open your Home Assistant:

  • Press the “c” button to invoke the search bar and start typing Add-ons, select Navigate Add-ons > search for DuckDNS add-on > click Install. Alternatively, click the My Home Assistant link below:

Home Assistant Remote Access using NGINX Reverse Proxy & DuckDNS - Kiril Peyanski's Blog (2)


Home Assistant Remote Access using NGINX Reverse Proxy & DuckDNS - Kiril Peyanski's Blog (3)

  • After the DuckDNS Home Assistant add-on installation is completed. Go to the Configuration tab of the add-on and add:
    • Your DuckDNS sub-domain under domains: section
    • Change accept_terms: false to accept_terms: true
  • At the end your Home Assistant DuckDNS Add-on configuration should look similar to the one below:
aliases: []domains: - YOUR_DOMAIN.duckdns.orglets_encrypt: accept_terms: true algo: secp384r1 certfile: fullchain.pem keyfile: privkey.pemseconds: 300token: YOUR_DUCKDNS_TOKEN
  • Save the changes and start the Home Assistant DuckDNS Add-on from the Info tab.

What is a reverse proxy?

I’m ready with DuckDNS installation and configuration. It is time for NGINX reverse proxy. But first, Let’s clear what a reverse proxy is?

The purpose of a reverse proxy setup in our case NGINX is to only encrypt the traffic for certain entry points, such as your DuckDNS domain name.

What is NGINX?

If you are wondering what NGINX is? Here is a simple explanation: it is lightweight open source web server that is within the Top 3 of the most popular web servers around the world.

How to install NGINX Home Assistant Add-on?

Fortunately,there is a ready to use Home Assistant NGINX add-on that we will use to reverse proxy the Internet traffic securely to our Home Assistant installation. Let’sinstall that Home Assistant NGINX add-on:

  • Press the “c” button to invoke the search bar and start typing Add-ons, select Navigate Add-ons > search for NGINX add-on > click Install. Alternatively, click the My Home Assistant link below:

Home Assistant Remote Access using NGINX Reverse Proxy & DuckDNS - Kiril Peyanski's Blog (4)

  • After the NGINX Home Assistant add-on installation is completed. Go to the Configuration tab of the add-on and add your DuckDNS domain next to the domain section and Save the changes.
  • Your NGINX configuration should look similar to the picture below (of course, you should change smash-the-lke sub-domain with your own).
Home Assistant Remote Access using NGINX Reverse Proxy & DuckDNS - Kiril Peyanski's Blog (5)

When using a reverse proxy, you will need to enable the use_x_forwarded_for and trusted_proxies options in your Home Assistant configuration. Requests from reverse proxies will be blocked if these options are not set. To add them open your configuration.yaml file with your favourite editor and add the following section:

# configuration.yaml entryhttp: use_x_forwarded_for: true trusted_proxies: - 172.30.33.0/24

Exposing your Home Assistant installation to the outside world is a moderate security risk. To make this risk very low you can add few more lines (last two lines from the example below), so you can protect yourself further and if someone tries to login three times with wrong credentials it will be automatically banned.
The next lines (last two lines below) are optional, but highly recommended.

# configuration.yaml entryhttp: use_x_forwarded_for: true trusted_proxies: - 172.30.33.0/24 ip_ban_enabled: true # use this to enable auto IP ban login_attempts_threshold: 3 # set the number of allowed login attempts

After you are finish editing the configuration.yaml file. Save the changes and restart your Home Assistant.

Port Forwarding rule

The final step of the Home Assistant Remote Access using NGINX Reverse Proxy & DuckDNS is to do some port forwarding in your home router. This part is easy, but the exact steps depends of your router brand and model.

The port forwarding rule should do the following: Forward any 443 port income traffic towards your Router WAN IP (Or DuckDNS domain) to port 443 of your local IP where Home Assistant is installed.

If you don’t know how to do it type in YouTube the following:

your_router_brand port forward

For example: linksys port forward

Below is a screen of how I configured this port forwarding rule in Unifi Dream Machine router.

Home Assistant Remote Access using NGINX Reverse Proxy & DuckDNS - Kiril Peyanski's Blog (6)

Testing the Home Assistant Remote Access using NGINX Reverse Proxy & DuckDNS

Time to test our Home Assistant Remote Access using NGINX Reverse Proxy & DuckDNS setup.

  • If I try to open the https://smash-the-like.duckdns.org it will work! And I will have a trusted certificate from Let’s Encrypt Certificate Authority (CA) that will auto renew from now on.
Home Assistant Remote Access using NGINX Reverse Proxy & DuckDNS - Kiril Peyanski's Blog (7)
  • If I try to open http://smash-the-like.duckdns.org the request will be converted to secure https connection and I will open my Home Assistant. This is very convenient as it will not matter whether you type http or https when you try to reach your Home Assistant from the outside.
  • If from my local network I type https://MY_HA_LOCAL_IP:8123 it will not work, but this result is wanted and expected.
  • And if I try non-encrypted http://MY_HA_LOCAL_IP:8123 connection it will work just fine. Exactly as I wanted.

Outro

If some of the abbreviations and acronyms that I’m using are not so clear for you, download my free Smart Home Glossary which is available at https://automatelike.pro/glossary.

I’m Kiril and I’m done writing. Bye!

Home Assistant Remote Access using NGINX Reverse Proxy & DuckDNS - Kiril Peyanski's Blog (2024)

References

Top Articles
Latest Posts
Article information

Author: Dean Jakubowski Ret

Last Updated:

Views: 6626

Rating: 5 / 5 (50 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: Dean Jakubowski Ret

Birthday: 1996-05-10

Address: Apt. 425 4346 Santiago Islands, Shariside, AK 38830-1874

Phone: +96313309894162

Job: Legacy Sales Designer

Hobby: Baseball, Wood carving, Candle making, Jigsaw puzzles, Lacemaking, Parkour, Drawing

Introduction: My name is Dean Jakubowski Ret, I am a enthusiastic, friendly, homely, handsome, zealous, brainy, elegant person who loves writing and wants to share my knowledge and understanding with you.