Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
in-sylva.search.app
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
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
in-sylva development
in-sylva.search.app
Merge requests
!53
Feature/authentication
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/authentication
feature/authentication
into
develop
Overview
0
Commits
15
Pipelines
3
Changes
39
Merged
Brett Choquet
requested to merge
feature/authentication
into
develop
1 month ago
Overview
0
Commits
15
Pipelines
3
Changes
39
Expand
0
0
Merge request reports
Compare
develop
version 2
0aebcd4d
1 month ago
version 1
35dbd2ba
1 month ago
develop (base)
and
latest version
latest version
427f3ebf
15 commits,
1 month ago
version 2
0aebcd4d
14 commits,
1 month ago
version 1
35dbd2ba
13 commits,
1 month ago
39 files
+
1026
−
1396
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
39
Search (e.g. *.vue) (Ctrl+P)
nginx/gzip.conf
0 → 100644
+
44
−
0
Options
# Enable Gzip compressed.
# gzip on;
# Enable compression both for HTTP/1.0 and HTTP/1.1 (required for CloudFront).
gzip_http_version
1
.
0
;
# Compression level (1-9).
# 5 is a perfect compromise between size and cpu usage, offering about
# 75% reduction for most ascii files (almost identical to level 9).
gzip_comp_level
5
;
# Don't compress anything that's already small and unlikely to shrink much
# if at all (the default is 20 bytes, which is bad as that usually leads to
# larger files after gzipping).
gzip_min_length
256
;
# Compress data even for clients that are connecting to us via proxies,
# identified by the "Via" header (required for CloudFront).
gzip_proxied
any
;
# Tell proxies to cache both the gzipped and regular version of a resource
# whenever the client's Accept-Encoding capabilities header varies;
# Avoids the issue where a non-gzip capable client (which is extremely rare
# today) would display gibberish if their proxy gave them the gzipped version.
gzip_vary
on
;
# Compress all output labeled with one of the following MIME-types.
gzip_types
application
/
atom
+
xml
application
/
javascript
application
/
json
application
/
rss
+
xml
application
/
vnd
.
ms
-
fontobject
application
/
x
-
font
-
ttf
application
/
x
-
web
-
app
-
manifest
+
json
application
/
xhtml
+
xml
application
/
xml
font
/
opentype
image
/
svg
+
xml
image
/
x
-
icon
text
/
css
text
/
plain
text
/
x
-
component
;
#
text
/
html
is
always
compressed
by
HttpGzipModule
\ No newline at end of file
Loading