mirror of
https://github.com/optim-enterprises-bv/control-pane.git
synced 2025-10-29 17:12:20 +00:00
21 lines
389 B
Plaintext
21 lines
389 B
Plaintext
user www;
|
|
|
|
load_module /usr/local/libexec/nginx/ngx_stream_module.so;
|
|
|
|
events {
|
|
use kqueue;
|
|
}
|
|
|
|
http {
|
|
include /usr/local/etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
client_max_body_size 1m;
|
|
include /usr/local/etc/nginx/sites-enabled/*.conf;
|
|
}
|
|
|
|
stream {
|
|
include /usr/local/etc/nginx/conf.stream.d/*.conf;
|
|
include /usr/local/etc/nginx/streams-enabled/*;
|
|
}
|