-
Notifications
You must be signed in to change notification settings - Fork 12
Using Stremio Server with Private IP
$ docker run -d \ --name=stremio-docker \ -e NO_CORS=1 \ -e IPADDRESS={{ YOUR PRIVATE IP }} \ -v ~/.stremio-server:/root/.stremio-server \ -p 8080:8080/tcp \ -p 11470:11470/tcp \ --restart unless-stopped \ tsaridas/stremio-docker:latest
If you set IPADDRESS to your private ip address then the server should still set the certificate to the wildcard *.519b6502d940.stremio.rocks and have the subdomain set as 192-168-1-10 assuming your private is 192.168.1.10. Full domain should look like 192-168-1-10.519b6502d940.stremio.rocks. You can then setup your /etc/hosts in Linux or c:\Windows\System32\Drivers\etc\hosts in windows to point that host to your lan address like :
192.168.1.10 192-168-1-10.519b6502d940.stremio.rocks # this is an example. set your own ip and fqnd here.
Then you can point your browser to https://192-168-1-10.519b6502d940.stremio.rocks:8080 and setup Streaming server to https://192-168-1-10.519b6502d940.stremio.rocks:12470 .
To find the FQDN that the certificate is pointing to, look at the folder you mounted for a file with a .pem
extension. The filename is the domain you need to add your your hosts in case of local ip address.