Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
1cd7d14e
Commit
1cd7d14e
authored
Mar 31, 2020
by
mbergeron
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable the dns_rebind_protection in the validation
parent
cb865035
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
ee/app/models/ee/application_setting.rb
ee/app/models/ee/application_setting.rb
+4
-1
No files found.
ee/app/models/ee/application_setting.rb
View file @
1cd7d14e
...
...
@@ -298,7 +298,10 @@ module EE
# ElasticSearch only exposes a RESTful API, hence we need
# to use the HTTP protocol on all URLs.
elasticsearch_url
.
each
do
|
str
|
::
Gitlab
::
UrlBlocker
.
validate!
(
str
,
schemes:
%w[http https]
,
allow_localhost:
true
)
::
Gitlab
::
UrlBlocker
.
validate!
(
str
,
schemes:
%w[http https]
,
allow_localhost:
true
,
dns_rebind_protection:
false
)
end
rescue
::
Gitlab
::
UrlBlocker
::
BlockedUrlError
errors
.
add
(
:elasticsearch_url
,
"only supports valid HTTP(S) URLs."
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment