takahe/docker/nginx.conf

20 wiersze
245 B
Nginx Configuration File
Czysty Zwykły widok Historia

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