Die erlaubte Whitelist für Iframes funktioniert bei uns nicht. Wir haben ein GitHub-Plugin mit plugin.rb hinzugefügt:
Rails.application.config.action_dispatch.default_headers.merge!({'X-Frame-Options' => 'ALLOWALL'})
Rails.application.config.action_dispatch.default_headers.merge!({'Access-Control-Allow-Origin' => '*'})
Rails.application.config.action_dispatch.default_headers.merge!({'Access-Control-Allow-Methods' => 'GET, POST, OPTIONS, DELETE'})
Rails.application.config.action_dispatch.default_headers.merge!({'Access-Control-Allow-Headers' => 'Content-Type, Authorization, X-Requested-With'})
Aber aus irgendeinem Grund setzt Discourse es immer wieder auf
x-frame-options: SAMEORIGIN
zurück

Alles funktioniert im http-localhost, aber wenn es in https bereitgestellt wird, funktioniert nichts.