-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnginx-wikidatacon
65 lines (51 loc) · 1.77 KB
/
nginx-wikidatacon
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
# vim: ft=nginx
server {
listen 80;
listen [::]:80;
server_name wikidatacon.wikidata.link;
return 301 https://$host$request_uri;
}
server {
listen 80;
listen [::]:80;
server_name query.wikidatacon.wikidata.link;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name wikidatacon.wikidata.link;
ssl_certificate /etc/letsencrypt/live/wikidatacon.wikidata.link/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/wikidatacon.wikidata.link/privkey.pem;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers HIGH:!aNULL:!MD5;
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-Protocol ssl;
proxy_set_header X-Forwarded-Proto https;
proxy_set_header X-Forwarded-Ssl on;
proxy_read_timeout 600s;
proxy_redirect off;
proxy_pass http://185.54.113.31:8181;
}
}
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name query.wikidatacon.wikidata.link;
ssl_certificate /etc/letsencrypt/live/query.wikidatacon.wikidata.link/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/query.wikidatacon.wikidata.link/privkey.pem;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers HIGH:!aNULL:!MD5;
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-Protocol ssl;
proxy_set_header X-Forwarded-Proto https;
proxy_set_header X-Forwarded-Ssl on;
proxy_read_timeout 600s;
proxy_redirect off;
proxy_pass http://185.54.113.31:8282;
}
}