diff --git a/content/0.instances.md b/content/0.instances.md index 3efae3a..b7075fd 100644 --- a/content/0.instances.md +++ b/content/0.instances.md @@ -9,7 +9,7 @@ This page showcases movie-web instances hosted by the community and other altern ## Community Instances -The community maintains these trusted instances, meaning they are likely to be up-to-date. Remember that since these are volunteer instances, they might be down or stop working at any time. If you want to be sure you have access to movie-web, consider [hosting your own instance](../1.self-hosting/1.hosting-intro.md). +The community maintains these trusted instances, meaning they are likely to be up-to-date. Remember that since these are volunteer instances, they might be down or stop working at any time. If you want to be sure you have access to movie-web, consider [hosting your own instance](../1.self-hosting/1.hosting-intro.md). **Instances marked with a πŸ’Ύ have set up a backend, making it possible to sync your data across multiple devices.**
**Additionally, instances with a 🌐 use the community backend hosted by Lonelil, which has all the original movie-web.app data!**
@@ -26,12 +26,14 @@ The community maintains these trusted instances, meaning they are likely to be u | [sudo-flix.lol](https://sudo-flix.lol) | [itzCozi - Community Self Hoster](https://gitlab.com/itzCozi) | πŸ’ΎπŸ“± | | [movie-web.x](https://movie-web.x) | [Unstoppable Domains](https://unstoppabledomains.com) and [IPFS](https://ipfs.tech) | πŸ’Ύ | -**Note:** [movie-web.x](https://movie-web.x) is only accessible using Brave, Opera or installing an [extension](https://unstoppabledomains.com/extension) to resolve unstoppable domains. -If you cannot access [movie-web.x](https://movie-web.x) try using a gateway: [Cloudflare](https://cloudflare-ipfs.com/ipns/k51qzi5uqu5diql6nkzokwdvz9511dp9itillc7xhixptq14tk1oz8agh3wrjd), [dweb.link](https://k51qzi5uqu5diql6nkzokwdvz9511dp9itillc7xhixptq14tk1oz8agh3wrjd.ipns.dweb.link), [cf-ipfs](https://k51qzi5uqu5diql6nkzokwdvz9511dp9itillc7xhixptq14tk1oz8agh3wrjd.ipns.cf-ipfs.com) +::alert{type="info"} +[movie-web.x](https://movie-web.x) is only accessible using Brave, Opera or installing an [extension](https://unstoppabledomains.com/extension) to resolve unstoppable domains. +If you cannot access [movie-web.x](https://movie-web.x) try using a gateway: [Cloudflare](https://cloudflare-ipfs.com/ipns/k51qzi5uqu5diql6nkzokwdvz9511dp9itillc7xhixptq14tk1oz8agh3wrjd), [dweb.link](https://k51qzi5uqu5diql6nkzokwdvz9511dp9itillc7xhixptq14tk1oz8agh3wrjd.ipns.dweb.link), or [cf-ipfs](https://k51qzi5uqu5diql6nkzokwdvz9511dp9itillc7xhixptq14tk1oz8agh3wrjd.ipns.cf-ipfs.com) +:: ## Community Backend -Our partner, Lonelil, has kindly offered to host a movie-web backend with a copy of the original data from the movie-web.app. You can access this backend at: `https://mw-backend.lonelil.com` +Our partner, Lonelil, has kindly offered to host a movie-web backend with a copy of the original data from the movie-web.app. You can access this backend at: `https://mw-backend.lonelil.com` or `https://mw-backend.lonelil.ru` You **do not** have to set up a new account; you can use your previous passphrase from movie-web, and all of your data will be there! @@ -39,7 +41,7 @@ You **do not** have to set up a new account; you can use your previous passphras These sites are not related to movie-web but are good enough to switch to if the official instances are down. You can also use [FMHY](https://fmhy.pages.dev/videopiracyguide) to find even more options. -* [watch.lonelil.com](https://watch.lonelil.com) -* [themoviearchive.site](https://themoviearchive.site) -* [braflix.video](https://braflix.video) -* [watch.streamflix.one](https://watch.streamflix.one) +- [watch.lonelil.com](https://watch.lonelil.com) +- [themoviearchive.site](https://themoviearchive.site) +- [braflix.video](https://braflix.video) +- [watch.streamflix.one](https://watch.streamflix.one) diff --git a/content/3.client/1.deploy.md b/content/3.client/1.deploy.md index 8942d7a..d718b9d 100644 --- a/content/3.client/1.deploy.md +++ b/content/3.client/1.deploy.md @@ -43,3 +43,67 @@ title: 'Deploy' - Vercel - Etc, [there are lots of options](https://www.staticwebsitehosting.org/){target="\_blank"}. 9. Congrats! You have your own version of movie-web hosted. + +## Method 3 - Docker Compose - Home Network + +This method is meant for those using a desktop device or single board computer with a minimum of 4GB of RAM such as a [Raspberry Pi](https://www.raspberrypi.com/) to run movie-web on there home network for network connected devices. + +1. Ensure you have [docker](https://docs.docker.com/get-docker/) installed. In a newly created directory called `movie-web` create a file called `docker-compose.yaml`. Paste the contents of the code block below into this file. + +```yaml +version: "3.8" + +services: + + movieweb: + build: + context: https://github.com/movie-web/movie-web.git + # args: + # TMDB_READ_API_KEY: "" + # CORS_PROXY_URL: "" + # BACKEND_URL: "" + ports: + - "80:80" + restart: unless-stopped +``` + +2. Within the `docker-compose.yaml` file uncomment `args`, `TMDB_READ_API_KEY`, `CORS_PROXY_URL`. +- Make sure `args` is in-line with `context` +- Make sure `TMDB_READ_API_KEY` and `CORS_PROXY_URL` are tabbed once to the right of `args`. +3. Put your proxy URL in-between the double quotes of `CORS_PROXY_URL: ""`. Make sure to not have a slash at the end of your URL. + + Example (THIS IS AN EXAMPLE, IT WON'T WORK FOR YOU): `CORS_PROXY_URL: "https://test-proxy.test.workers.dev"` + +4. Put your TMDB Read Access Token inside the quotes of `TMDB_READ_API_KEY: ""`. Please read [the TMDB page](2.tmdb.md) on how to get an API key. +5. Uncomment and add any [additional environment variables](3.configuration.md) you may need. Remove the `VITE_` prefix when adding an environment variable to `args`. +6. Save the file! +7. Now use [docker](https://docs.docker.com/get-docker/) to run `movieweb` as background service. + +```bash +# movie-web is the current working directory +$ docker compose up --detach +``` + +8. Verify that setup was successful +- Navigate to `http://localhost`. You should see the UI for `movie-web`. Find something to watch and make sure that it plays. +- View logs with + + ```bash + $ docker compose logs --follow movieweb + ``` + +9. Set a static IP address for your device. +- For Raspberry Pi: [guide](https://www.makeuseof.com/raspberry-pi-set-static-ip/) +- For Mac: [guide](https://www.macinstruct.com/tutorials/how-to-set-a-static-ip-address-on-a-mac/) +- For Windows: [guide](https://www.pcmag.com/how-to/how-to-set-up-a-static-ip-address) + +10. Navigate to movie web at `http://