Reverse proxy details for Caddy Server (#3222)

* Reverse proxy details for Caddy Server

Code snippet to show a working example of using Caddy as a reverse proxy to Home Assistant.

* Update docs_navigation to include link to Caddy

Update sidebar with link to new doc showing example of Caddy reverse proxy

* Update caddy.markdown
This commit is contained in:
Ben 2017-08-23 17:20:25 +10:00 committed by Fabian Affolter
parent d6971e08b1
commit 06abfe7823
No known key found for this signature in database
GPG key ID: DDF3D6F44AAB1336
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,21 @@
---
layout: page
title: "Caddy Server reverse proxy"
description: "Configure Caddy Server as a reverse proxy to Home Assistant."
date: 2017-08-22 22:20
sidebar: true
comments: false
sharing: true
footer: true
---
Configure [Caddy Server](https://caddyserver.com/) for use as a reverse proxy to Home Assistant.
```
hass.example.org {
proxy / localhost:8123 {
websocket
transparent
}
}
```