You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For the UI to work with different servers, it is necessary to configure the Nginx config proxy to allow connections to the respective servers without Cross-Origin (to be put into /etc/nginx/conf.d/default/conf or similar).
510
-
511
-
.. parsed-literal::
512
-
513
-
server {
514
-
listen 80;
515
-
server_name localhost;
516
-
location / {
517
-
# /src/ui/dist contains the built UI webpack
518
-
root /src/ui/dist;
519
-
index index.html;
520
-
}
521
-
# for apiHost of server-1 located in config.json
522
-
location /server-1/client/ {
523
-
rewrite ^/server-1/(.*)$ /$1 break;
524
-
# server's actual URI
525
-
proxy_pass https://server-1.your.domain;
526
-
}
527
-
# for apiHost of server-2 located in config.json
528
-
location /client/ {
529
-
# server's actual URI
530
-
proxy_pass https://server-2.your.domain;
531
-
}
532
-
}
533
-
534
-
|ui-multiple-server-management.png|
535
475
536
476
Known Limitations
537
477
~~~~~~~~~~~~~~~~~
@@ -548,6 +488,3 @@ The following features are no longer supported or available in the UI but are st
0 commit comments