kloudbuster/kloudbuster/dib/elements/kloudbuster/static/etc/nginx/nginx.conf

23 lines
351 B
Nginx Configuration File

user www-data;
worker_processes 8;
pid /run/nginx.pid;
events {
worker_connections 2048;
}
http {
server {
location / {
root /data/www;
access_log off;
}
location /status {
stub_status on;
access_log off;
#deny all;
allow all;
}
}
}