This commit is contained in:
Blake Blackshear 2023-04-23 07:27:19 -05:00 committed by GitHub
parent 9b5a21b29c
commit 304ed44966
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -85,7 +85,7 @@ There are many ways to authenticate a website but a straightforward approach is
</VirtualHost>
```
## Nginix Reverse Proxy
## Nginx Reverse Proxy
This method shows a working example for subdomain type reverse proxy with SSL enabled.
@ -94,27 +94,20 @@ This method shows a working example for subdomain type reverse proxy with SSL en
This is set in `$server` and `$port` this should match your ports you have exposed to your docker container. Optionally you listen on port `443` and enable `SSL`
```
# ------------------------------------------------------------
# frigate.domain.com
# ------------------------------------------------------------
server {
set $forward_scheme http;
set $server "192.168.100.2"; # FRIGATE SERVER LOCATION
set $port 5000;
listen 80;
listen 443 ssl http2;
server_name frigate.domain.com;
}
}
```
### Setup SSL (optional)