-
Notifications
You must be signed in to change notification settings - Fork 0
/
nginx.conf
50 lines (39 loc) · 830 Bytes
/
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
41
42
43
44
45
46
47
48
49
50
load_module modules/ngx_http_xslt_filter_module.so;
user nginx;
worker_processes auto;
pid /var/run/nginx.pid;
events { worker_connections 1024; }
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
server {
root /usr/share/nginx/html;
location / {
index index.md;
try_files $uri $uri/ $uri.md =404;
autoindex on;
autoindex_format xml;
xslt_stylesheet /tmp/nginx/xslt/autoindex-juh.xslt;
}
types {
text/html html;
text/html md;
text/css css;
text/javascript js;
application/pdf pdf;
image/apng apng;
image/bmp bmp;
image/gif gif;
image/heic heic;
image/jpeg jpeg;
image/png png;
image/pnj pnj;
image/svg+xml svg;
image/tiff tiff;
image/webp webp;
}
}
}