-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgbif-extinct.conf
45 lines (37 loc) · 1.3 KB
/
gbif-extinct.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
server {
listen 80;
listen [::]:80;
listen 443 ssl;
listen [::]:443 ssl http2;
server_name gbif-last-observation.com;
return 301 $scheme://www.gbif-last-observation.com$request_uri;
}
server {
listen 80;
listen [::]:80;
server_name www.gbif-last-observation.com;
if ($host = www.gbif-last-observation.com) {
return 301 https://$host$request_uri;
} # managed by Certbot
return 301 https://$host$request_uri;
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name www.gbif-last-observation.com;
location / {
proxy_pass http://localhost:1323;
proxy_http_version 1.1;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Real-IP $remote_addr;
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 Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_pass_request_headers on;
}
ssl_certificate /etc/letsencrypt/live/www.gbif-last-observation.com/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/www.gbif-last-observation.com/privkey.pem; # managed by Certbot
}