Hello, Currently, I have a real simple set up to mask where I'm sending the user as follows: server { listen 80; server_name my.website.ca; location / { proxy_set_header X-Real-IP $remote_addr; proxy_pass https://another.website.com; } } I would like to set up SAML using Okta on https://another.website.com, but unsure what I need to add in my configuratiby Amphagory - How to...