Commit 6ce503b7 authored by GitLab Bot's avatar GitLab Bot

Automatic merge of gitlab-org/gitlab-ce master

parents e02f9853 b102e24a
...@@ -61,6 +61,12 @@ which is used by users. Internal URL does not need to be a private address. ...@@ -61,6 +61,12 @@ which is used by users. Internal URL does not need to be a private address.
Internal URL defaults to External URL, but you can customize it under Internal URL defaults to External URL, but you can customize it under
**Admin area > Geo Nodes**. **Admin area > Geo Nodes**.
CAUTION: **Warning:**
We recommend using an HTTPS connection while configuring the Geo nodes. To avoid
breaking communication between **primary** and **secondary** nodes when using
HTTPS, customize your Internal URL to point to a Load Balancer with TLS
termination.
## Multiple secondary nodes behind a load balancer ## Multiple secondary nodes behind a load balancer
In GitLab 11.11, **secondary** nodes can use identical external URLs as long as In GitLab 11.11, **secondary** nodes can use identical external URLs as long as
......
...@@ -9,12 +9,12 @@ module QA ...@@ -9,12 +9,12 @@ module QA
Runtime::Browser.visit(:gitlab, Page::Main::Login) Runtime::Browser.visit(:gitlab, Page::Main::Login)
Page::Main::Login.perform(&:sign_in_using_credentials) Page::Main::Login.perform(&:sign_in_using_credentials)
user = Resource::User.fabricate! do |user| user = Resource::User.fabricate_via_api! do |user|
user.name = "eve <img src=x onerror=alert(2)&lt;img src=x onerror=alert(1)&gt;" user.name = "eve <img src=x onerror=alert(2)&lt;img src=x onerror=alert(1)&gt;"
user.password = "test1234" user.password = "test1234"
end end
project = Resource::Project.fabricate! do |resource| project = Resource::Project.fabricate_via_api! do |resource|
resource.name = 'xss-test-for-mentions-project' resource.name = 'xss-test-for-mentions-project'
end end
project.visit! project.visit!
...@@ -24,10 +24,11 @@ module QA ...@@ -24,10 +24,11 @@ module QA
page.add_member(user.username) page.add_member(user.username)
end end
Resource::Issue.fabricate_via_browser_ui! do |issue| issue = Resource::Issue.fabricate_via_api! do |issue|
issue.title = issue_title issue.title = issue_title
issue.project = project issue.project = project
end end
issue.visit!
Page::Project::Issue::Show.perform do |show_page| Page::Project::Issue::Show.perform do |show_page|
show_page.select_all_activities_filter show_page.select_all_activities_filter
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment