Change streaming API host to not be overridden to localhost in development mode (#28557)
This commit is contained in:
parent
7cce2a41f2
commit
bd415af9a1
@ -23,7 +23,7 @@ Rails.application.configure do
|
|||||||
if Rails.env.production?
|
if Rails.env.production?
|
||||||
"ws#{https ? 's' : ''}://#{web_host}"
|
"ws#{https ? 's' : ''}://#{web_host}"
|
||||||
else
|
else
|
||||||
"ws://#{ENV['REMOTE_DEV'] == 'true' ? host.split(':').first : 'localhost'}:4000"
|
"ws://#{host.split(':').first}:4000"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ describe 'Content-Security-Policy' do
|
|||||||
"form-action 'self'",
|
"form-action 'self'",
|
||||||
"child-src 'self' blob: https://cb6e6126.ngrok.io",
|
"child-src 'self' blob: https://cb6e6126.ngrok.io",
|
||||||
"worker-src 'self' blob: https://cb6e6126.ngrok.io",
|
"worker-src 'self' blob: https://cb6e6126.ngrok.io",
|
||||||
"connect-src 'self' data: blob: https://cb6e6126.ngrok.io ws://localhost:4000",
|
"connect-src 'self' data: blob: https://cb6e6126.ngrok.io ws://cb6e6126.ngrok.io:4000",
|
||||||
"script-src 'self' https://cb6e6126.ngrok.io 'wasm-unsafe-eval'"
|
"script-src 'self' https://cb6e6126.ngrok.io 'wasm-unsafe-eval'"
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user