You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
587 B
Plaintext
24 lines
587 B
Plaintext
upstream wifi2_proxy {
|
|
server ori.natalieandjoshua.com:80;
|
|
}
|
|
|
|
server {
|
|
listen 443;
|
|
server_name wifi2.natalieandjoshua.com;
|
|
|
|
location / {
|
|
proxy_pass http://wifi2_proxy/;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
proxy_set_header Host $http_host;
|
|
}
|
|
|
|
|
|
ssl on;
|
|
ssl_certificate /etc/letsencrypt/live/wifi2.natalieandjoshua.com/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/wifi2.natalieandjoshua.com/privkey.pem;
|
|
ssl_protocols TLSv1.2;
|
|
|
|
}
|