-
Notifications
You must be signed in to change notification settings - Fork 0
/
nginx.conf
53 lines (42 loc) · 1.28 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
41
42
43
44
45
46
47
48
49
50
51
52
53
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log notice;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
server {
listen 80 default_server;
listen [::]:80 default_server;
location ~ ^/(documentation|tutorial)/ {
alias /docs/;
try_files /index.html =404;
}
location = /data/documentation.json {
alias /docs/data/;
# Xcode 13.0 beta 1 generated DocC archives without a file at data/documentation.json.
# Replace "vapordocc" with the name of the name of your product.
try_files /documentation.json /documentation/vapordocc.json =404;
}
location ~ ^/(css|data|downloads|images|img|index|js|videos)/ {
alias /docs/;
try_files $uri =404;
}
location ~ ^/(favicon.ico|favicon.svg|theme-settings.json)$ {
alias /docs/;
try_files $uri =404;
}
location = / {
return 302 /documentation/;
}
location = /documentation {
return 302 /documentation/;
}
location = /tutorial {
return 302 /tutorial/;
}
}
}