mirror of
https://github.com/pikvm/ustreamer.git
synced 2025-12-23 18:50:00 +00:00
14 lines
413 B
Plaintext
14 lines
413 B
Plaintext
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;
|
|
}
|
|
}
|