mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-30 12:33:02 +02:00
Relocate all nginx .conf files to board/common/rootfs/etc/nginx/ and introduce available/*.conf with symlinks to enabled/*.conf Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
25 lines
494 B
Nginx Configuration File
25 lines
494 B
Nginx Configuration File
user www-data www-data;
|
|
worker_processes 1;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
sendfile on;
|
|
#tcp_nopush on;
|
|
|
|
#keepalive_timeout 0;
|
|
keepalive_timeout 65;
|
|
|
|
#gzip on;
|
|
|
|
include /etc/nginx/enabled/*.conf;
|
|
|
|
access_log syslog:server=unix:/dev/log,nohostname,facility=local7,severity=info;
|
|
error_log syslog:server=unix:/dev/log,nohostname,facility=local7 info;
|
|
}
|