Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
ma-impl
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
eccochu
ma-impl
Commits
2708cdbd
Commit
2708cdbd
authored
9 years ago
by
Eike Cochu
Browse files
Options
Downloads
Patches
Plain Diff
updated docker config, nginx config
parent
d5886aa7
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
docker/nginx.conf
+40
-0
40 additions, 0 deletions
docker/nginx.conf
docker/webapps/.gitkeep
+0
-0
0 additions, 0 deletions
docker/webapps/.gitkeep
docker/webroot/.gitkeep
+0
-0
0 additions, 0 deletions
docker/webroot/.gitkeep
with
40 additions
and
0 deletions
docker/nginx.conf
0 → 100644
+
40
−
0
View file @
2708cdbd
user
www-data
;
worker_processes
auto
;
pid
/run/nginx.pid
;
events
{
worker_connections
768
;
}
http
{
sendfile
on
;
tcp_nopush
on
;
tcp_nodelay
on
;
keepalive_timeout
65
;
types_hash_max_size
2048
;
include
/etc/nginx/mime.types
;
default_type
application/octet-stream
;
access_log
off
;
error_log
/var/log/nginx/error.log
;
gzip
on
;
gzip_disable
"msie6"
;
gzip_vary
on
;
gzip_proxied
any
;
gzip_comp_level
6
;
gzip_buffers
16
8k
;
gzip_http_version
1.1
;
gzip_types
text/plain
text/css
application/json
application/javascript
text/xml
application/xml
application/xml
+rss
text/javascript
;
server
{
listen
80
default
;
server_name
_
;
root
/webroot
;
index
index.html
;
location
/
{
try_files
$uri
$uri
/
/index.html
;
}
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
docker/webapps/.gitkeep
deleted
100644 → 0
+
0
−
0
View file @
d5886aa7
This diff is collapsed.
Click to expand it.
docker/webroot/.gitkeep
deleted
100644 → 0
+
0
−
0
View file @
d5886aa7
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment