-
Notifications
You must be signed in to change notification settings - Fork 0
/
prod-nginx-default.conf
65 lines (55 loc) · 1.9 KB
/
prod-nginx-default.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
54
55
56
57
58
59
60
61
62
63
64
# Let this container upstream /static/ to API if nothing's found locally.
upstream app_server {
server api:8000;
}
server {
listen 80;
listen [::]:80;
root /usr/share/nginx/html;
set $gcs "storage.googleapis.com";
server_name $hostname localhost;
location ~ ^.*/static/((?:js|css|media)/.*(main|chunk).*)$ {
resolver 8.8.8.8;
proxy_pass https://$gcs/er-static/static/$1;
proxy_set_header Host storage.googleapis.com;
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_intercept_errors on;
add_header X-Powered-By: 'Cloud-Storage';
}
location /static {
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
#
# Custom headers and headers various browsers *should* be OK with but aren't
#
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range,Authorization';
#
# Tell client that this pre-flight info is valid for 20 days
#
add_header 'Access-Control-Max-Age' 1728000;
add_header 'Content-Type' 'text/plain; charset=utf-8';
add_header 'Content-Length' 0;
return 204;
}
try_files $uri @api;
}
location ~ ^/(login|reports|events|patrols|layers|settings|eula)(?:/(.*))?$ {
alias /usr/share/nginx/html;
try_files /index.html =404;
}
location / {
index index.html index.htm;
}
location @api {
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range,Authorization';
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $http_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
proxy_pass http://app_server;
}
}