-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSSL nginx proxy to app
48 lines (32 loc) · 1.19 KB
/
SSL nginx proxy to app
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
apt install nginx -y
nano /etc/nginx/sites-enabled/default
server { listen 80; listen [::]:80;
listen 443 ssl;
ssl on;
ssl_certificate /home/cert/certificates.crt;
ssl_certificate_key /home/cert/private.key;
server_name site.com www.site.com;
location / {
proxy_pass http://localhost:3000/;
proxy_set_header Host $http_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;
}
}
----------------------------------------------------------------------------
works you need to merge Terminal cat certificate.crt ca_bundle.crt >> certificate.crt
server { listen 80;
listen 443 ssl;
ssl on;
ssl_certificate /home/cert/certificate2.crt;
ssl_certificate_key /home/cert/private.key;
server_name site.com www.site.com;
location / {
proxy_pass http://localhost:3000/;
proxy_set_header Host $http_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;
}
}