-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathnginx_default
46 lines (34 loc) · 1.15 KB
/
nginx_default
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
server {
listen 443 ssl;
server_name www.hbpneuromorphic.eu;
ssl_certificate /etc/letsencrypt/live/www.hbpneuromorphic.eu/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/www.hbpneuromorphic.eu/privkey.pem;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
# redirect the old dashboard page
location /dashboard/ {
return 301 https://nmpi.hbpneuromorphic.eu/dashboard/;
}
}
server {
listen 443 ssl;
server_name www-staging.hbpneuromorphic.eu;
ssl_certificate /etc/letsencrypt/live/www-staging.hbpneuromorphic.eu/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/www-staging.hbpneuromorphic.eu/privkey.pem;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
}
server {
listen 443 ssl;
server_name www-dev.hbpneuromorphic.eu;
ssl_certificate /etc/letsencrypt/live/www-dev.hbpneuromorphic.eu/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/www-dev.hbpneuromorphic.eu/privkey.pem;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
}