mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-04 10:08:57 +00:00

* 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
22 lines
414 B
Markdown
22 lines
414 B
Markdown
---
|
|
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
|
|
}
|
|
}
|
|
```
|