2024-12-13, 08:36 PM
Code:
x-frame-options: SAMEORIGIN
This is the problem. Add this to your caddyfile.
Code:
header -X-Frame-Options {
defer
}
The whole thing would look like this.
Code:
example.com {
header -X-Frame-Options {
defer
}
reverse_proxy 127.0.0.1:8096
}