datarhei / restreamer

The Restreamer is a complete streaming server solution for self-hosting. It has a visually appealing user interface and no ongoing license costs. Upload your live stream to YouTube, Twitch, Facebook, Vimeo, or other streaming solutions like Wowza. Receive video data from OBS and publish it with the RTMP and SRT server.
https://docs.datarhei.com/restreamer/
Apache License 2.0
3.96k stars 452 forks source link

404 /ui/ not found when ssl is applied #530

Open mabdullahafzal opened 1 year ago

mabdullahafzal commented 1 year ago

Restreamer is working fine on an unsecure port,

image

when SSL is applied home page works fine image

but when I click to enter the main application with route mywebsite/ui/ it says 404 page not found.

image

I am using Nginx Ubuntu Server, https redirction is applied through nginx server proxy on http://mywebsite:8080

mabdullahafzal commented 1 year ago

I found https://github.com/datarhei/restreamer/issues/525 in the issues section. I tried this but still not working for me.

Now my webpage is redirecting to the player site but no channel is working there. When I put /ui/ it gives same error 404 not found.

jstabenow commented 1 year ago

Hey @mabdullahafzal Please provide your NGINX configurations and the Docker command you used to start Restreamer.

torgo6 commented 1 year ago

Hi, I have a similar problem with ssl. Unsecure communication works, the https sites doesn't appear. I use the BYOC ssl setting, it works with version 0.6.8. I have two instances running, as well a http server on port 8080 Command line to start restreamer: docker run -d --name c1_restreamer --restart always -e "RS_USERNAME=myuser" -e "RS_PASSWORD=mypassword" -p 8081:8080 -p 8091:8181 -e RS_HTTPS=true -v /c1_restreamer/db:/restreamer/db datarhei/restreamer:dev

BR Thomas