19 lines
418 B
Plaintext
19 lines
418 B
Plaintext
worker_processes 1;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include mime.types;
|
|
default_type application/octet-stream;
|
|
sendfile on;
|
|
keepalive_timeout 65;
|
|
|
|
# Logs Nginx locaux (facultatif, peut être redirigé ailleurs)
|
|
access_log /var/log/nginx/4nk_node.access.log;
|
|
error_log /var/log/nginx/4nk_node.error.log;
|
|
|
|
include /etc/nginx/sites-enabled/*.conf;
|
|
}
|