Skip to content

Commit 311ab2d

Browse files
committed
new version of proxyrack
1 parent f7586d0 commit 311ab2d

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.env

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,9 @@ RP_API_KEY='<your api key>'
4747
# Your Proxylite USER ID (to retrieve in your proxylite dashboard)
4848
PROXYLITE_USER_ID=<your user id>
4949

50-
# Your Proxyrack API KEY (to retrieve in your proxyrack dashboard -> profile (use generate if not existing))
51-
PROXYRACK_API_KEY=<your api key>
50+
# Your Proxyrack UUID (random string : use for instance : cat /dev/urandom | LC_ALL=C tr -dc 'A-F0-9' | dd bs=1 count=64 2>/dev/null )
51+
# Don't forget to add this UUID in your dashboard (wait 5 minutes after starting container)
52+
PROXYRACK_HOST_UUID=<your host uuid>
5253

5354
# Internal environment (do not change)
5455
_COMPOSE_PROJECT_NAME=cashfactory

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Installation (you can open www/index.html file to have a more interactive instal
1616
- Special procedure for Earnapp : you will need to add your device in the dashboard, to get the id use Portainer to open "exec console" on the Earnapp container (or through ssh enter: docker exec -it cashfactory_Earnapp_1 sh) and type : earnapp showid, to add the device you need to enter this link in your browser https://earnapp.com/r/your-id replacing "your-id" with the id you found earlier with show-id.
1717
- Special procedure for Peer2profit : registration is done using a telegram bot (you need to install telegram application)
1818
- Special procedure for Bitping : you will need to enter manually credential to initialize (TODO : easiest way ?), in $HOME/CashFactory type : sudo docker run -it -v $HOME/CashFactory/data/bitping/:/root/.bitping bitping/bitping-node:latest , then enter your credential , once this is done CTL-C to end container
19+
- special procedure for Proxyrack : you will need to add your device uuid (see .env how to generate it) in the dashboard (dashboard -> devices -> add device)
1920

2021
Registering section and supported cash earning apps :
2122

docker-compose.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,16 +206,15 @@ services:
206206

207207
#Start of Proxyrack section (remove this if Proxyrack not wanted)
208208
# variables to define in .env file :
209-
# PROXYRACK_API_KEY : Your application api key (available in proxyrack dashboard -> profile -> generate API key (keep same for all devices))
209+
# PROXYRACK_HOST_UUID : Your host UUID (random string), you can generate it using the command : cat /dev/urandom | LC_ALL=C tr -dc 'A-F0-9' | dd bs=1 count=64 2>/dev/null
210210
Proxyrack:
211211
depends_on:
212212
- Portainer
213213
- Webserver
214214
image: proxyrack/pop:latest
215215
restart: always
216216
environment:
217-
- api_key=$PROXYRACK_API_KEY
218-
- device_name=$DEVICE_NAME
217+
- UUID=$PROXYRACK_HOST_UUID
219218
networks:
220219
default:
221220
ipv4_address: 172.106.0.110

0 commit comments

Comments
 (0)