Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions 04_routing/webserver/nginx.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
daemon off;
# Necessary on Ubuntu
error_log /tmp/error.log;
pid /tmp/nginx.pid;

events {}

Expand All @@ -15,9 +18,11 @@ http {

server {
listen 3000;

# comment out on windows
access_log /dev/stdout compact;
#access_log /dev/out compact;
# Necessary on Ubuntu
access_log /tmp/access.log compact;

location /product/ {
proxy_pass http://team_decide;
Expand Down