This repository has been archived by the owner on Apr 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
user www-data; | ||
|
||
worker_processes 1; | ||
pid /var/run/nginx.pid; | ||
|
||
events { | ||
multi_accept on; | ||
worker_connections 1024; | ||
} | ||
|
||
http { | ||
gzip on; | ||
gzip_vary on; | ||
gzip_comp_level 5; | ||
gzip_types text/plain application/x-javascript text/xml text/css; | ||
|
||
autoindex on; | ||
sendfile on; | ||
tcp_nopush on; | ||
tcp_nodelay on; | ||
keepalive_timeout 65; | ||
types_hash_max_size 2048; | ||
server_tokens off; | ||
include /etc/nginx/mime.types; | ||
default_type application/octet-stream; | ||
access_log /var/log/nginx/access.log; | ||
error_log /var/log/nginx/error.log; | ||
client_max_body_size 32M; | ||
client_header_buffer_size 8m; | ||
large_client_header_buffers 8 8m; | ||
|
||
fastcgi_buffer_size 8m; | ||
fastcgi_buffers 8 8m; | ||
|
||
fastcgi_read_timeout 600; | ||
|
||
include /etc/nginx/conf.d/*.conf; | ||
} |