Hello Troy,
The '[acnt-mgt]' 'http-rsp-header' values are only for ISAM Management page interactions, such as 'login' 'change password' 'login_success'.
The '/mga/sps/authsvc' is a Junction call to the backend so it is not affected by these headers.
At 9.0.6.0 you can set the '[rsp-header-names]' on a per-junction level.
You could resolve your issue like:
[rsp-header-names:/mga]
http-rsp-header = x-frame-options:TEXT{SAMEORIGIN}
http-rsp-header = content-security-policy:TEXT{frame-ancestors 'none'}
http-rsp-header = x-content-type-options:TEXT{nosniff}
http-rsp-header = x-xss-protection:TEXT{1}
Or, you can optionally set those globally for all responses like :
[rsp-header-names]
http-rsp-header = x-frame-options:TEXT{SAMEORIGIN}
http-rsp-header = content-security-policy:TEXT{frame-ancestors 'none'}
http-rsp-header = x-content-type-options:TEXT{nosniff}
http-rsp-header = x-xss-protection:TEXT{1}
------------------------------
JACK YARBOROUGH
------------------------------