mirror of
https://github.com/lancachenet/monolithic
synced 2024-11-22 20:13:04 +00:00
faa6b3969d
This commit rebases the generic code into the monolithic image This allows the base image to be the more regularly accessed / edited image Commits to lancachenet/generic:switcheroo will mimic this commit Also fixes lancachenet/generic#108
39 lines
702 B
Nginx Configuration File
39 lines
702 B
Nginx Configuration File
user www-data;
|
|
include /etc/nginx/workers.conf;
|
|
pid /run/nginx.pid;
|
|
|
|
include /etc/nginx/modules-enabled/*.conf;
|
|
|
|
events {
|
|
worker_connections 4096;
|
|
multi_accept on;
|
|
use epoll;
|
|
}
|
|
|
|
http {
|
|
aio threads;
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
tcp_nodelay on;
|
|
keepalive_timeout 65;
|
|
types_hash_max_size 2048;
|
|
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
access_log /var/log/nginx/access.log;
|
|
error_log /var/log/nginx/error.log;
|
|
|
|
|
|
gzip on;
|
|
|
|
include /etc/nginx/conf.d/*.conf;
|
|
|
|
include /etc/nginx/sites-enabled/*.conf;
|
|
}
|
|
|
|
|
|
stream {
|
|
include /etc/nginx/stream.d/*.conf;
|
|
include /etc/nginx/stream-enabled/*;
|
|
}
|