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
92005fb7
Commit
92005fb7
authored
Aug 14, 2019
by
Heinrich Lee Yu
Committed by
Stan Hu
Aug 22, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable CSP in gitlab.yml.example
This enables CSP in dev and CI
parent
8308469f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
5 deletions
+29
-5
config/gitlab.yml.example
config/gitlab.yml.example
+26
-5
spec/support/capybara.rb
spec/support/capybara.rb
+3
-0
No files found.
config/gitlab.yml.example
View file @
92005fb7
...
...
@@ -50,12 +50,12 @@ production: &base
# Content Security Policy
# See https://guides.rubyonrails.org/security.html#content-security-policy
content_security_policy:
enabled:
fals
e
enabled:
tru
e
report_only: false
directives:
base_uri:
child_src:
connect_src: "'self' http://localhost:
3808 ws://localhost:3808 wss://localhost:3000
"
connect_src: "'self' http://localhost:
* ws://localhost:* wss://localhost:*
"
default_src: "'self'"
font_src:
form_action:
...
...
@@ -64,10 +64,10 @@ production: &base
img_src: "* data: blob:"
manifest_src:
media_src:
object_src: "'
self' http://localhost:3808 'unsafe-inline' 'unsafe-eval' https://www.google.com/recaptcha/ https://www.recaptcha.net/ https://www.gstatic.com/recaptcha/ https://apis.google.com
"
script_src:
object_src: "'
none'
"
script_src:
"'self' 'unsafe-eval' http://localhost:* https://www.google.com/recaptcha/ https://www.recaptcha.net/ https://www.gstatic.com/recaptcha/ https://apis.google.com"
style_src: "'self' 'unsafe-inline'"
worker_src: "
http://localhost:3000
blob:"
worker_src: "
'self'
blob:"
report_uri:
# Trusted Proxies
...
...
@@ -1099,6 +1099,27 @@ test:
host: localhost
port: 80
content_security_policy:
enabled: true
report_only: false
directives:
base_uri:
child_src:
connect_src:
default_src: "'self'"
font_src:
form_action:
frame_ancestors: "'self'"
frame_src: "'self' https://www.google.com/recaptcha/ https://www.recaptcha.net/ https://content.googleapis.com https://content-compute.googleapis.com https://content-cloudbilling.googleapis.com https://content-cloudresourcemanager.googleapis.com"
img_src: "* data: blob:"
manifest_src:
media_src:
object_src: "'none'"
script_src: "'self' 'unsafe-eval' http://localhost:* https://www.google.com/recaptcha/ https://www.recaptcha.net/ https://www.gstatic.com/recaptcha/ https://apis.google.com"
style_src: "'self' 'unsafe-inline'"
worker_src: "'self' blob:"
report_uri:
# When you run tests we clone and set up gitlab-shell
# In order to set it up correctly you need to specify
# your system username you use to run GitLab
...
...
spec/support/capybara.rb
View file @
92005fb7
...
...
@@ -47,6 +47,9 @@ Capybara.register_driver :chrome do |app|
# Explicitly set user-data-dir to prevent crashes. See https://gitlab.com/gitlab-org/gitlab-ce/issues/58882#note_179811508
options
.
add_argument
(
"user-data-dir=/tmp/chrome"
)
if
ENV
[
'CI'
]
||
ENV
[
'CI_SERVER'
]
# Chrome 75 defaults to W3C mode which doesn't allow console log access
options
.
add_option
(
:w3c
,
false
)
Capybara
::
Selenium
::
Driver
.
new
(
app
,
browser: :chrome
,
...
...
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