-
Notifications
You must be signed in to change notification settings - Fork 5
/
nginx.conf.template
104 lines (77 loc) · 2.55 KB
/
nginx.conf.template
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
server {
listen 80 default_server;
server_name _;
root /usr/share/nginx/html;
rewrite ^([^.]*[^/])$ $1/ permanent;
if ($request_uri ~ '^\/embed\/map') {
set $is_embedded_map M;
}
if ($request_uri ~ '^\/(edit\/)?document\/\d+\/') {
set $is_tracker T;
}
if ($request_uri ~ '^\/(edit\/)?documents\/') {
set $is_tracker T;
}
if ($request_uri ~ '^\/(edit\/)?documents\/crid\/\w+\/') {
set $is_tracker T;
}
if ($request_uri ~ '^\/crawlers\/') {
set $is_tracker T;
}
if ($request_uri ~ '^/(fonts|img|static)/') {
set $is_assets F;
}
if ($request_uri ~ '\.(js|css)$') {
set $is_bundle B;
}
if ($http_user_agent ~* '(iPhone|iPod|Android|Blackberry|Windows Phone|Opera Mini|WebOS|SymbianOS|IEMobile|Maemo)') {
set $is_redirect "${is_assets}${is_bundle}${is_embedded_map}${is_tracker}C";
}
if ($is_redirect = C) {
return 301 https://{{MOBILE_SERVER_NAME}}$request_uri;
}
location ~* ^/officer/(?<officer_name>[a-z-]+)/(?<officer_id>\d+) {
return 301 /officer/$officer_id/$officer_name/;
}
location /embed/map {
alias /usr/share/nginx/html/;
}
location /embed/top-officers-page {
alias /usr/share/nginx/html/;
}
location /embed/officers {
alias /usr/share/nginx/html/;
}
location ~* ^/(img|fonts|static) {
expires 1h;
add_header Cache-Control "public";
try_files $uri /index.html;
}
location ~* \.(js|css)$ {
expires 1h;
add_header Cache-Control "public";
try_files $uri /index.html;
}
location / {
add_header X-Frame-Options SAMEORIGIN;
try_files $uri /index.html;
}
}
}