Files

23 lines
572 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Подключите конфигурацию интерфейс
server {
listen 8081;
server_name _;
root /var/www/connect;
index index.html;
# Конечная точка сопряжения прокси с API Dojo
location /v2/support/pairing {
proxy_pass http://node:8080/support/pairing;
}
location /test/v2/support/pairing {
proxy_pass http://node:8080/support/pairing;
}
# Статические файлы Server Connect интерфейс
location / {
try_files $uri $uri/ =404;
}
}