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
6ce503b7
Commit
6ce503b7
authored
Jul 08, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
e02f9853
b102e24a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
4 deletions
+11
-4
doc/user/admin_area/geo_nodes.md
doc/user/admin_area/geo_nodes.md
+7
-1
qa/qa/specs/features/browser_ui/2_plan/issue/check_mentions_for_xss_spec.rb
...es/browser_ui/2_plan/issue/check_mentions_for_xss_spec.rb
+4
-3
No files found.
doc/user/admin_area/geo_nodes.md
View file @
6ce503b7
...
...
@@ -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
**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
In GitLab 11.11,
**secondary**
nodes can use identical external URLs as long as
...
...
@@ -83,4 +89,4 @@ questions that you know someone might ask.
Each scenario can be a third-level heading, e.g.
`### Getting error message X`
.
If you have none to add when creating a doc, leave this section in place
but commented out to help encourage others to add to it in the future. -->
\ No newline at end of file
but commented out to help encourage others to add to it in the future. -->
qa/qa/specs/features/browser_ui/2_plan/issue/check_mentions_for_xss_spec.rb
View file @
6ce503b7
...
...
@@ -9,12 +9,12 @@ module QA
Runtime
::
Browser
.
visit
(
:gitlab
,
Page
::
Main
::
Login
)
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)<img src=x onerror=alert(1)>"
user
.
password
=
"test1234"
end
project
=
Resource
::
Project
.
fabricate!
do
|
resource
|
project
=
Resource
::
Project
.
fabricate
_via_api
!
do
|
resource
|
resource
.
name
=
'xss-test-for-mentions-project'
end
project
.
visit!
...
...
@@ -24,10 +24,11 @@ module QA
page
.
add_member
(
user
.
username
)
end
Resource
::
Issue
.
fabricate_via_browser_u
i!
do
|
issue
|
issue
=
Resource
::
Issue
.
fabricate_via_ap
i!
do
|
issue
|
issue
.
title
=
issue_title
issue
.
project
=
project
end
issue
.
visit!
Page
::
Project
::
Issue
::
Show
.
perform
do
|
show_page
|
show_page
.
select_all_activities_filter
...
...
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