-
Notifications
You must be signed in to change notification settings - Fork 0
/
nginx.conf
41 lines (35 loc) · 1.1 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
server {
ssl_certificate /home/recorder/keys/recorder-cert.pem;
ssl_certificate_key /home/recorder/keys/recorder-privkey.pem;
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name recorder.chandlerfamily.org.uk;
access_log /var/log/nginx/recorder.log node_api;
root /home/recorder/recorder/client;
index index.html;
location / {
# First attempt to serve request as file, then
# as directory, it is probably a client side route, and should result in index.html.
try_files $uri $uri/ /index.html;
access_log off;
add_header Cache-Control "public, no-cache";
}
# deny access to any dot files or test directories
#
location ~ /(\.|test|mocks) {
deny all;
}
location /api/ {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_pass http://localhost:2030;
proxy_redirect off;
chunked_transfer_encoding off;
proxy_buffering off;
proxy_cache off;
}
}