proxyraye-nextjs/README.md

68 lines
2.1 KiB
Markdown
Raw Normal View History

2024-04-27 19:30:28 +00:00
# Proxy Raye
2024-04-21 14:56:08 +00:00
2024-05-13 17:43:43 +00:00
Proxy Raye is an alternative front-end for adult websites. Watch videos on a clean UI without tracking and without annoying ads popping up from everywhere!
## Currently supported platforms:
- XVideos
- XNXX
- (...more coming soon!)
2024-04-21 14:56:08 +00:00
2024-04-27 19:30:28 +00:00
## Working demos
Vercel hosted demo can be found [here](https://proxyraye.vercel.app).
Self-hosted demo can be found [here](https://proxyraye.copyriot.xyz).
# Quickstart
You can run the project on local by cloning the repo.
Project requires no configuration.
You can run it via Docker with docker-compose by opening root folder via console and running:
2024-04-21 14:56:08 +00:00
```
2024-04-27 19:30:28 +00:00
docker-compose up -d
```
And head browser to `localhost:8069`.
Or you can run it outside Docker via npm (tested with NodeJS `20.11`) by opening root folder via console and running:
```
npm install
npm run build
npm run start
```
And head browser to `localhost:3000`.
2024-04-21 14:56:08 +00:00
2024-05-16 15:38:48 +00:00
### WARNING:
Proxy Raye tries to avoid ip blacklisting by setting random human-request-like headers at every call. But in the long run (after several hours of continuous requests) XVideos might **temporarily blacklist** your IP address. When this happen, it will stop returning HD videos from pages. Only low quality (SD) videos will be shown.
Using a VPN can avoid such issue.
2024-04-27 19:30:28 +00:00
# Modify
2024-04-27 19:40:35 +00:00
If you want to edit the project you can start development mode by opening root folder via console and running:
2024-04-21 14:56:08 +00:00
2024-04-27 19:30:28 +00:00
```
npm install
npm run dev
```
The project uses following tech stack:
2024-04-21 14:56:08 +00:00
2024-04-27 19:30:28 +00:00
- NextJS 14 (w/App router)
- Typescript
- Redux
- Pico CSS with Sass
- Next/Intl
2024-04-21 14:56:08 +00:00
2024-04-27 19:30:28 +00:00
It scrapes data server-side and return treated data to the frontend to be rendered.
# Deploy
2024-04-21 14:56:08 +00:00
2024-04-27 19:30:28 +00:00
## Vercel
2024-04-21 14:56:08 +00:00
2024-04-27 19:30:28 +00:00
You can deploy the app on Vercel by cloning this repo on your GitHub/Gitlab and making it private. Than create a new Vercel account and import it there. Vercel deploy doesn't need particular configuration.
2024-04-21 14:56:08 +00:00
2024-04-27 19:40:35 +00:00
Due to Vercel's *serverless* nature (which makes every request to XVideos and other platforms come from a different IP) it becomes very hard for *web application firewalls* to ban addresses effectively.
2024-04-21 14:56:08 +00:00
2024-04-27 19:30:28 +00:00
## Self-host
You can self host the project on your local server via docker-compose and reverse-proxy exposed port to nginx.