I want to embed an ignition gateway in an iframe on a website with a different ip address. I generated a self-signed certificate so that the ignition webserver is accessible via https, the website itself is in development so its only accessible via http. In the iframe it shows that the ignition url redirected too many times and the response headers show that the Set-Cookie header didnt specify SameSite so it defaults to Lax. How can I fix these cookie and CSP problems so that the gateway can be accessed in the website’s iframe and via the browser directly. These are the aditional properties i have added so far : wrapper.java.additional.14=-Dignition.http.header.x_frame_options.enabled=false
wrapper.java.additional.15=-Dignition.http.header.x_frame_options.value=
wrapper.java.additional.16=-Dignition.http.session.cookie.same-site.cross-origin=None
wrapper.java.additional.17=-Dignition.http.header.Content-Security-Policy="frame-ancestors 'self' {ip1:port} {ip2:port}"