mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-11 10:21:02 +01:00
19 lines
370 B
Plaintext
19 lines
370 B
Plaintext
server {
|
|
listen 7277 default_server;
|
|
|
|
include /etc/nginx/includes/server_params.conf;
|
|
include /etc/nginx/includes/proxy_params.conf;
|
|
|
|
location / {
|
|
proxy_pass http://backend;
|
|
}
|
|
|
|
location /notifications/hub {
|
|
proxy_pass http://wsbackend;
|
|
}
|
|
|
|
location /notifications/hub/negotiate {
|
|
proxy_pass http://backend;
|
|
}
|
|
|
|
} |