php8-pecl-xdebug: update to 3.2.1
[feed/packages.git] / net / nginx-util / files / uci.conf.template
1 # Consider using UCI or creating files in /etc/nginx/conf.d/ for configuration.
2 # Parsing UCI configuration is skipped if uci set nginx.global.uci_enable=false
3 # For details see: https://openwrt.org/docs/guide-user/services/webserver/nginx
4
5 worker_processes auto;
6
7 user root;
8
9 include module.d/*.module;
10
11 events {}
12
13 http {
14 access_log off;
15 log_format openwrt
16 '$request_method $scheme://$host$request_uri => $status'
17 ' (${body_bytes_sent}B in ${request_time}s) <- $http_referer';
18
19 include mime.types;
20 default_type application/octet-stream;
21 sendfile on;
22
23 client_max_body_size 128M;
24 large_client_header_buffers 2 1k;
25
26 gzip on;
27 gzip_vary on;
28 gzip_proxied any;
29
30 root /www;
31
32 #UCI_HTTP_CONFIG
33 include conf.d/*.conf;
34 }