Skip to content

Commit

Permalink
Pull over other default Homebrew Nginx config
Browse files Browse the repository at this point in the history
* set default MIME type to application/octet-stream
* enable sendfile
* bump keepalive timeout to 65 sec
  • Loading branch information
jeremy committed Jul 6, 2015
1 parent 149920f commit 622c710
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions share/powprox/nginx.conf.erb
Expand Up @@ -2,8 +2,12 @@
user <%= ENV['USER'] %> staff;

http {
default_type application/octet-stream;
include mime.types;

sendfile on;
keepalive_timeout 65;

# Provide the Pow host root dir as an Nginx variable so per-app nginx
# configs can dynamically set server root directories relative to it.
# We could process per-app config as ERB templates instead, but that'd
Expand Down

0 comments on commit 622c710

Please sign in to comment.