I have an application with subdomains and I would like to be able to connect to a WebSocket of all of the subdomains when I add a subdomain to
cable/config.ru
ActionCable.server.config.allowed_request_origins = ["domain.com",
"sub1.domain.com", "sub1.domain.com"]
It works ok but how I can set alias for all subdomains somethink like this:
"[*.domain.com]"
Char " * "dosn't work.