Skip to content

Commit

Permalink
Merge branch 'US17_MicroserviceForQueries' into devel
Browse files Browse the repository at this point in the history
  • Loading branch information
pablodiegoss committed Dec 2, 2017
2 parents 2c1bc8a + 59212f6 commit 2bf7bde
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
volumes:
- .:/code
ports:
- "8000:8000"
- "80:8000"
depends_on:
- mongo
- redis
Expand All @@ -37,7 +37,7 @@ services:
metabase:
image: metabase/metabase
ports:
- "3000:3000"
- "8080:3000"
environment:
MB_DB_TYPE: postgres
MB_DB_DBNAME: metabase
Expand Down
32 changes: 32 additions & 0 deletions nginx.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@

user nginx;
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 on;

include /etc/nginx/conf.d/*.conf;
}

0 comments on commit 2bf7bde

Please sign in to comment.