takahe/docker/nginx.conf

20 lines
245 B
Nginx Configuration File
Raw Normal View History

daemon off;
2023-01-19 12:11:54 -08:00
error_log /dev/stdout warn;
events {
worker_connections 4096;
}
http {
2023-01-18 21:04:30 -08:00
sendfile on;
tcp_nopush on;
types_hash_max_size 2048;
2023-01-18 21:04:30 -08:00
include /etc/nginx/mime.types;
gzip on;
2022-12-18 23:26:38 -08:00
2023-01-18 21:04:30 -08:00
include /etc/nginx/conf.d/*.conf;
}