DEV: Allow all subdomains of localhost in development (#17018)

By default in rails, it looks like only one level deep is allowed.
This commit is contained in:
Daniel Waterworth 2022-06-06 16:02:51 -05:00 committed by GitHub
parent 49415de3fa
commit 00e756e358
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -110,4 +110,6 @@ Discourse::Application.configure do
Bullet.rails_logger = true
end
end
config.hosts << /\A(([a-z-]+)\.)*localhost(\:\d+)?\Z/
end