Skip to content

Commit

Permalink
Merge pull request #32 from relekang/add-favicon-to-nginx-example
Browse files Browse the repository at this point in the history
Add favicon section to nginx example in server-setup
  • Loading branch information
mxstbr authored Jan 15, 2017
2 parents 0f330ea + 367a382 commit 3a836b5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions server-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@ server {
proxy_set_header Host $host;
proxy_pass http://localhost:3000;
}
# This will avoid favicon.ico being counted when you test the service
# in the browser.
location = /favicon.ico {
access_log off;
log_not_found off;
return 204;
}
}
```

Expand Down

0 comments on commit 3a836b5

Please sign in to comment.