mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-13 10:51:03 +00:00
19 lines
245 B
Nginx Configuration File
19 lines
245 B
Nginx Configuration File
daemon off;
|
|
error_log /dev/stdout warn;
|
|
|
|
events {
|
|
worker_connections 4096;
|
|
}
|
|
|
|
http {
|
|
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
types_hash_max_size 2048;
|
|
|
|
include /etc/nginx/mime.types;
|
|
gzip on;
|
|
|
|
include /etc/nginx/conf.d/*.conf;
|
|
|
|
}
|