SSL Proxy Scripts (#226)

* adding basic ssl steps

* added down the road section
This commit is contained in:
tallman5
2023-10-03 19:41:39 -04:00
committed by GitHub
parent 35ed415f4c
commit 68e7e97e74
3 changed files with 83 additions and 0 deletions

13
tools/ssl/ustreamer-proxy Normal file
View File

@@ -0,0 +1,13 @@
server {
listen 5101 ssl;
server_name your.domain.com;
ssl_certificate /etc/letsencrypt/live/your.domain.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/your.domain.com/privkey.pem;
location / {
proxy_pass http://127.0.0.1:8080; # Change this to the uStreamer server address
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}