mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-11 02:11:01 +01:00
23 lines
505 B
Plaintext
23 lines
505 B
Plaintext
server {
|
|
listen 7277 default_server ssl;
|
|
|
|
include /etc/nginx/includes/server_params.conf;
|
|
include /etc/nginx/includes/ssl_params.conf;
|
|
include /etc/nginx/includes/proxy_params.conf;
|
|
|
|
ssl_certificate /ssl/%%certfile%%;
|
|
ssl_certificate_key /ssl/%%keyfile%%;
|
|
|
|
location / {
|
|
proxy_pass http://backend;
|
|
}
|
|
|
|
location /notifications/hub {
|
|
proxy_pass http://wsbackend;
|
|
}
|
|
|
|
location /notifications/hub/negotiate {
|
|
proxy_pass http://backend;
|
|
}
|
|
|
|
} |