Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
backoffice_client
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
web-et-numerique
Factory
LLLE_Project
backoffice_client
Merge requests
!3
Feat/dockerize
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feat/dockerize
feat/Dockerize
into
dev
Overview
0
Commits
3
Pipelines
0
Changes
10
Merged
Guilhem CARRON
requested to merge
feat/Dockerize
into
dev
3 years ago
Overview
0
Commits
3
Pipelines
0
Changes
10
Expand
0
0
Merge request reports
Compare
dev
version 1
6a7cf24f
3 years ago
dev (base)
and
latest version
latest version
99495590
3 commits,
3 years ago
version 1
6a7cf24f
2 commits,
3 years ago
10 files
+
125
−
1559
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
nginx/nginx.conf
0 → 100644
+
34
−
0
Options
worker_processes
1
;
error_log
/var/log/nginx/error.log
warn
;
pid
/var/run/nginx.pid
;
events
{
worker_connections
1024
;
}
http
{
include
/etc/nginx/mime.types
;
default_type
application/octet-stream
;
log_format
main
'
$remote_addr
-
$remote_user
[
$time_local
]
"
$request
"
'
'
$status
$body_bytes_sent
"
$http_referer
"
'
'"
$http_user_agent
"
"
$http_x_forwarded_for
"'
;
access_log
/var/log/nginx/access.log
main
;
sendfile
on
;
#tcp_nopush on;
keepalive_timeout
65
;
# Gzip conf
gzip
on
;
gzip_vary
on
;
# tells proxies to cache both gzipped and regular versions of a resource
gzip_min_length
256
;
# taille minimale du fichier à compresser
gzip_types
text/plain
text/css
text/xml
text/javascript
application/x-javascript
application/xml
;
include
/etc/nginx/conf.d/*.conf
;
# Max Body Size
client_max_body_size
2M
;
}
Loading