Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
mat2-quasar-frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
jfriedli
mat2-quasar-frontend
Merge requests
!28
Develop
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Develop
develop
into
master
Overview
0
Commits
48
Pipelines
10
Changes
43
Merged
Develop
jfriedli
requested to merge
develop
into
master
Oct 3, 2019
Overview
0
Commits
48
Pipelines
10
Changes
43
0
0
Merge request reports
Compare
master
version 9
181943c3
Oct 4, 2019
version 8
55b93a74
Oct 4, 2019
version 7
18b76acd
Oct 4, 2019
version 6
818ed9b2
Oct 4, 2019
version 5
06ced34a
Oct 4, 2019
version 4
69959b2f
Oct 4, 2019
version 3
da13d758
Oct 4, 2019
version 2
19356a02
Oct 4, 2019
version 1
80097ae6
Oct 3, 2019
master (base)
and
latest version
latest version
81ee50aa
48 commits,
Oct 4, 2019
version 9
181943c3
47 commits,
Oct 4, 2019
version 8
55b93a74
46 commits,
Oct 4, 2019
version 7
18b76acd
43 commits,
Oct 4, 2019
version 6
818ed9b2
42 commits,
Oct 4, 2019
version 5
06ced34a
39 commits,
Oct 4, 2019
version 4
69959b2f
37 commits,
Oct 4, 2019
version 3
da13d758
35 commits,
Oct 4, 2019
version 2
19356a02
34 commits,
Oct 4, 2019
version 1
80097ae6
33 commits,
Oct 3, 2019
43 files
+
2152
−
664
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
43
nginx_config/default.conf
0 → 100644
+
18
−
0
View file @ 81ee50aa
Edit in single-file editor
Open in Web IDE
server
{
add_header
Allow
"GET, HEAD"
always
;
if
($
request_method
!~ ^(
GET
|
HEAD
)$ )
{
return
405
;
}
add_header
X
-
Frame
-
Options
"SAMEORIGIN"
;
add_header
X
-
XSS
-
Protection
"1; mode=block"
;
add_header
X
-
Content
-
Type
-
Options
nosniff
;
add_header
Feature
-
Policy
"geolocation none;midi none;notifications none;push none;sync-xhr none;magnetometer none;gyroscope none;speaker self;vibrate self;payment none;"
;
location
/ {
root
/
var
/
www
/
html
;
try_files
$
uri
$
uri
/ /
index
.
html
;
}
}
Loading