-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnginx.conf
40 lines (31 loc) · 1.07 KB
/
nginx.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
load_module "/usr/lib/nginx/modules/ngx_http_brotli_filter_module.so";
load_module "/usr/lib/nginx/modules/ngx_http_brotli_static_module.so";
load_module "/usr/lib/nginx/modules/ngx_http_headers_more_filter_module.so";
events {
worker_connections 1024;
}
http {
sendfile on;
tcp_nopush on;
server_tokens off;
error_log stderr emerg;
log_not_found off;
include mime.types;
include fastcgi.conf;
fastcgi_cache_path /tmp/fastcgi_cache levels=1:2 keys_zone=fastcgi_cache:50m max_size=16g inactive=7d;
include conf.d/open_file_cache.conf;
proxy_temp_path /tmp/proxy_temp;
client_body_temp_path /tmp/client_temp;
fastcgi_temp_path /tmp/fastcgi_temp;
index index.php index.html;
root /etc/nginx/root;
include conf.d/gzip.conf;
include conf.d/brotli.conf;
include conf.d/ssl.conf;
include conf.d/http2.conf;
include hosts.d/archlinux.de-default.conf;
include hosts.d/archlinux.de-http.conf;
include hosts.d/archlinux.de-canonical.conf;
include hosts.d/laber-land.de.conf;
include vhosts.d/*.conf;
}