Config Changes to Add OpsMx Assistant (NLI) in SSD
Configuration Changes:
# Opsmx-assistant — MUST be before /ui
location ^~ /ui/assistant/ {
proxy_pass http://opsmx-assistant:8080/;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
add_header Access-Control-Allow-Origin $http_origin always;
add_header Access-Control-Allow-Credentials true always;
add_header Access-Control-Allow-Methods 'GET, OPTIONS' always;
add_header Access-Control-Allow-Headers 'Content-Type' always;
}Last updated