This guide will help you associate your domain or subdomain to your SPKCC node. This guide can also be used for the DLUX node or ragnarok node as well. In this guide, I will be using CADDY as my web server. There are so many advantages in using CADDY over other web servers. I see two primary advantages and that's why I use CADDY for all my web server needs. - Easy to use. Very simple setup commands - Caddy takes care of SSL certificates by itself. We don't have to manually set up an SSL certificate. The second point is the main reason why I wanted to explore CADDY. Now let's get into setting up a domain or subdomain for our SPKCC node.  [Source](https://caddyserver.com/) ## Step 1: Install Caddy on the server The steps are very simple to install Caddy on the server. If you are using an NGINX instance already, you can stop it and then install Caddy. If you are starting fresh, you can straight away go and install Caddy. Below are the commands to get started. All my servers are Ubuntu 20.4 and this worked well for me and I'm sure this should work on other versions of Linux as well.  > curl -fsSL [https://apt.privex.io/add-repo.sh](https://apt.privex.io/add-repo.sh "This link will take you away from the app") | bash > apt update > apt install -y caddy I'm using a Virtual machine box from [@privex](https://www.privex.io/?r=bala41288) so I used their repo to get the package. You can also use a different package link to the repo. The steps were very simple. ## Step 2: Edit the Caddyfile Caddyfile is the configuration file that has all the information about the sites we are hosting. It is one place where we do all the configurations required for the domain association. The below command can be used to access the Cadyfile > sudo nano /etc/caddy/Caddyfile The default caddy file contents looks like the below:  Once the file is opened, you can make changes in such a way that domain\subdomain is set. I commented out all the existing lines in the file and just added the reverse_proxy line alone. You can also remove all the existing contents of the file and just have the active content alone. That also works. My final Caddyfile looked similar to the below.  The RPC node of SPK usually runs at 3001. But it can be changed to any port in the .env file. In my case, I'm running it on a 3002 port. The application is already running using Pm2. When I set a reverse_proxy in the caddy file. All the requests that are reaching to spkccc.hivedata.live will be routed to the localchost:3002 port internally. We can have multiple such configurations running in the same machine. We can run a dlux node, ragnarok node, and spkcc node in the same machine. In my example, I have added a subdomain called herpc. You can also directly associate a domain as well. You can save and exit the file now. ## Step 3: Enable your Caddy service You can either go to the directory of the Caddyfile and run the service manually with the below command. > caddy run Or enable it as a service. In my case, I enabled it as a service with the below commands.  > systemctl enable caddy > systemctl status caddy > systemctl restart caddy The status check command will tell you if the service is running fine or not. In some cases if the configuration is incorrect or if there are unwanted characters in the Caddyfile, the service may fail to run. The status command will show you an active (running) status similar to the below.  Sometimes the caddy service would be already running on your machine and you may not need to start it again. Only if you are making changes to the Caddy file, do we have to restart the service for the changes to take effect. Otherwise, we are good. ## Step 4: Point your domain to the IP address of the server This is the last step to completing your setup. We have to point the domain\subdomain to the IP address of the server so that all the requests coming to the domain are redirected to the server and caddy is able to serve those requests. In my case, I have my domains on Namecheap and as I was adding a subdomain, it was very simple to just add an A record in the domain's DNS configuration and point it to the IP address of my witness server.  The configuration page looks similar to the above and it will vary from one service provider to another. In the Value field, you will have to enter the IP address of your spkcc node. You can do this step before all the other steps as well. It doesn't really matter if you add the A record before or after. It is good to do it before because it usually takes some time for the domain to propagate. If you do this step first, the propagation would have happened before you complete the other steps. ## Step 5: Test if our configuration worked It is quite simple to test if the configuration worked or not. Try visiting your node URL directly from a browser. In my case, it is `https://spkcc.hivedata.live/`. The URL worked. It should give you a result similar to the below.  You can also test this on your Linux machine using the CURL command. The output should look like the below.  --- With this, we are done with associating a subdomain to the SPKCC node. The good thing about Caddy is, that we don't have to deal with SSL certificates. Caddy takes care of it. --- If you like what I'm doing on Hive, you can vote me as a witness with the links below. <center> Vote @balaz as a [Hive Witness](https://vote.hive.uno/@balaz) </center> <center> Vote @kanibot as a [Hive Engine Witness](https://votify.vercel.app/kanibot) </center> --- <table> <tr> <td> <center><a href="https://discord.gg/bGmS2tE"><img src="https://images.hive.blog/DQmdthy4q4vyefBYmjMJtx7qHBmLnCfP2btiRPhRyc2U8hP/Indiaunited.png"/></a></center> </td> <td> <center><a href="https://kanibot.com/"><img src="https://images.hive.blog/DQmdm8hKPz9TZL8Gd8bPyeVHm9hfgMqqiHcKL8283RBv2eH/Kanibot.png"/></a></center> </td> <td> <center><a href="https://netbox.global/r/balanbx"><img src="https://images.hive.blog/DQma1a9t6rceDQYvMt6FhNkHuUUjAkQssZHrLJcXKfiQBFd/NetboxGlobal.png"/></a></center> </td> <tr> <td> <center><a href="https://r.honeygain.me/BALA4F8CD5"><img src="https://images.hive.blog/DQmdCZg8z6sxVukSdPm2kXRAhhnySqPZqK9YQ5hco65sp4n/Honeygain.png"/></a></center> </td> <td> <center><a href="https://www.privex.io/?r=bala41288"><img src="https://images.hive.blog/DQmPB85eAMrQNGV7C4ykbfVTDNaiGmb8PfuiFr2AL8N8JQm/Privex.png"/></a></center> </td> <td> <center><a href="https://www.publish0x.com/?a=YRdG6knybD"><img src="https://images.hive.blog/DQmcb3f3oJvjyxyScbim4gKPAnrHTyXjYtwk7HeC9aTN9Pn/Publish0x.png"/></a></center> </td> </tr> </tr> </table> --- Posted with [STEMGeeks](https://stemgeeks.net)
author | balaz |
---|---|
permlink | step-by-step-guide-to-associate-a-domain-or-sub-domain-to-your-honeycomb-spkcc-node-using-caddy |
category | hive-163521 |
json_metadata | {"tags":["spk","honeycomb","neoxian","caddy","coding","archon","node","dlux","stem","pob"],"users":["balaz","kanibot"],"image":["https://images.hive.blog/DQmbZarN8xdkDtJ6doqpW6SE71WCXLNeoM9zspSq1mZLGXp/image.png","https://images.hive.blog/768x0/https://images.hive.blog/DQmTPLPYizj4WfZFhYymqGxqjpDXVnf6iuDMuvYWByCxghf/image.png","https://images.hive.blog/DQmPAkvk8HmsConvyaF2GddAQ8oJvNR2ZKX9vHbDpe4FsGU/image.png","https://images.hive.blog/DQmXaCnMjLuAbWbGTq4peqoHyKxJvt7bsiNLP1tcXN7nSjV/image.png","https://images.hive.blog/DQmRQcY5CyubyaoFdFa3ZBoWnW6HBEkJxoGHUFji9bZQugg/image.png","https://images.hive.blog/768x0/https://images.hive.blog/DQmZ8QrfS8fiNNVytnpu8n9eYxHHEjFHW6CBaTFEDAvKQPN/image.png","https://images.hive.blog/DQmbbohwttpxVYM7LaabvGepv1fyWmDw3SxjJAMT5Zz9XkP/image.png","https://images.hive.blog/DQmUi6Po8UwehX4hTU7f1cP8EwU3iNvefDDVkeiL69krcmY/image.png","https://images.hive.blog/DQmYHK4LsqjeefFjih7YyFeedjeeqXXNwXdeyY993PtauXg/image.png","https://images.hive.blog/DQmdthy4q4vyefBYmjMJtx7qHBmLnCfP2btiRPhRyc2U8hP/Indiaunited.png","https://images.hive.blog/DQmdm8hKPz9TZL8Gd8bPyeVHm9hfgMqqiHcKL8283RBv2eH/Kanibot.png","https://images.hive.blog/DQma1a9t6rceDQYvMt6FhNkHuUUjAkQssZHrLJcXKfiQBFd/NetboxGlobal.png","https://images.hive.blog/DQmdCZg8z6sxVukSdPm2kXRAhhnySqPZqK9YQ5hco65sp4n/Honeygain.png","https://images.hive.blog/DQmPB85eAMrQNGV7C4ykbfVTDNaiGmb8PfuiFr2AL8N8JQm/Privex.png","https://images.hive.blog/DQmcb3f3oJvjyxyScbim4gKPAnrHTyXjYtwk7HeC9aTN9Pn/Publish0x.png"],"links":["https://caddyserver.com/"],"app":"stemgeeks/0.1","format":"markdown","canonical_url":"https://stemgeeks.net/@balaz/step-by-step-guide-to-associate-a-domain-or-sub-domain-to-your-honeycomb-spkcc-node-using-caddy"} |
created | 2022-07-08 08:09:30 |
last_update | 2022-07-08 08:09:30 |
depth | 0 |
children | 15 |
last_payout | 2022-07-15 08:09:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 49.100 HBD |
curator_payout_value | 48.970 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7,630 |
author_reputation | 21,581,277,076,455 |
root_title | "Step by step guide to associate a domain or sub domain to your Honeycomb SPKCC node using Caddy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,669,070 |
net_rshares | 181,208,431,671,350 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
blocktrades | 0 | 1,639,672,853,348 | 0.88% | ||
alpha | 0 | 1,905,004,478,275 | 0.88% | ||
acidyo | 0 | 5,495,501,614,796 | 51% | ||
eric-boucher | 0 | 2,174,154,455 | 0.45% | ||
thecryptodrive | 0 | 5,568,659,746 | 0.18% | ||
mammasitta | 0 | 1,514,391,530 | 0.45% | ||
good-karma | 0 | 4,914,143,296 | 0.5% | ||
cloh76 | 0 | 606,029,229 | 0.45% | ||
donatello | 0 | 1,591,742,073 | 4.1% | ||
stea90 | 0 | 16,453,728,610 | 20.5% | ||
pipokinha | 0 | 58,384,754,773 | 100% | ||
akipponn | 0 | 460,716,743 | 5% | ||
neddykelly | 0 | 8,913,045,001 | 85% | ||
jphamer1 | 0 | 7,021,411,941,086 | 100% | ||
djennyfloro | 0 | 527,591,454 | 10% | ||
lordvader | 0 | 9,371,241,785 | 0.9% | ||
borran | 0 | 645,550,012,260 | 65% | ||
lemouth | 0 | 226,173,022,819 | 10% | ||
netaterra | 0 | 10,232,625,537 | 0.45% | ||
lamouthe | 0 | 731,004,464 | 10% | ||
tfeldman | 0 | 841,733,206 | 0.45% | ||
seckorama | 0 | 22,377,150,624 | 12.3% | ||
mcsvi | 0 | 105,029,670,131 | 50% | ||
cnfund | 0 | 1,632,025,321 | 0.9% | ||
abh12345 | 0 | 733,091,001,183 | 25% | ||
justyy | 0 | 4,862,290,326 | 0.9% | ||
disregardfiat | 0 | 131,952,136,384 | 100% | ||
curie | 0 | 124,386,224,302 | 0.9% | ||
techslut | 0 | 23,461,324,575 | 4% | ||
slider2990 | 0 | 15,343,563,929 | 100% | ||
steemstem | 0 | 583,738,681,683 | 10% | ||
esteemapp | 0 | 1,091,241,631 | 0.5% | ||
walterjay | 0 | 61,983,130,275 | 5% | ||
valth | 0 | 1,589,735,563 | 5% | ||
sardrt | 0 | 1,237,057,024 | 10% | ||
automaton | 0 | 20,465,566,568 | 100% | ||
dna-replication | 0 | 349,152,957 | 10% | ||
mariaalmeida | 0 | 15,929,892,998 | 100% | ||
camb | 0 | 1,580,153,885 | 25% | ||
gifmaster | 0 | 48,942,409,216 | 100% | ||
ackza | 0 | 111,205,208,894 | 100% | ||
trafalgar | 0 | 20,971,352,498,382 | 48% | ||
louisthomas | 0 | 122,760,419,197 | 100% | ||
itinerantph | 0 | 634,138,710 | 24% | ||
dhimmel | 0 | 53,317,521,047 | 2.5% | ||
oluwatobiloba | 0 | 640,692,834 | 10% | ||
detlev | 0 | 2,799,039,825 | 0.27% | ||
pastzam | 0 | 347,233,448,002 | 41% | ||
raindrop | 0 | 336,865,881,429 | 48% | ||
federacion45 | 0 | 1,393,677,665 | 0.45% | ||
jerge | 0 | 5,967,082,293 | 100% | ||
mobbs | 0 | 17,858,254,207 | 5% | ||
jerrybanfield | 0 | 3,463,101,666 | 0.9% | ||
roomservice | 0 | 595,193,843 | 0.45% | ||
rt395 | 0 | 1,361,509,045 | 1.5% | ||
bitrocker2020 | 0 | 1,404,272,657 | 0.13% | ||
newsflash | 0 | 186,136,832,573 | 0.31% | ||
jga | 0 | 45,855,528,683 | 100% | ||
erick1 | 0 | 49,956,908,031 | 80% | ||
birjudanak | 0 | 497,956,282 | 10% | ||
yehey | 0 | 1,970,145,209 | 0.9% | ||
samminator | 0 | 2,982,791,105 | 1% | ||
bearone | 0 | 12,358,397,594 | 19% | ||
enjar | 0 | 979,599,266,331 | 100% | ||
mahdiyari | 0 | 1,117,324,322,122 | 80% | ||
lorenzor | 0 | 1,356,782,769 | 50% | ||
sam99 | 0 | 13,702,460,518 | 21% | ||
gingerninja | 0 | 569,896,217 | 0.9% | ||
alexander.alexis | 0 | 6,101,877,110 | 10% | ||
professorbromide | 0 | 101,482,452,000 | 100% | ||
jayna | 0 | 1,005,631,233 | 0.18% | ||
ew-and-patterns | 0 | 9,234,699,419 | 3% | ||
princessmewmew | 0 | 1,191,347,652 | 0.45% | ||
grapthar | 0 | 1,239,744,289 | 0.67% | ||
hardikv | 0 | 7,020,950,185 | 50% | ||
ufv | 0 | 2,995,369,373 | 50% | ||
gunthertopp | 0 | 11,366,937,793 | 0.22% | ||
binkyprod | 0 | 497,087,381 | 0.45% | ||
ludmila.kyriakou | 0 | 1,633,275,374 | 3% | ||
touchman | 0 | 176,647,315,790 | 100% | ||
diegoameerali | 0 | 4,405,130,934 | 15% | ||
flatman | 0 | 767,514,671 | 0.9% | ||
analealsuarez | 0 | 1,344,871,947 | 50% | ||
minnowbooster | 0 | 1,128,605,071,536 | 20% | ||
haejin | 0 | 10,617,670,820,072 | 100% | ||
codingdefined | 0 | 115,875,423,530 | 30% | ||
howo | 0 | 292,695,276,172 | 10% | ||
tsoldovieri | 0 | 999,051,946 | 5% | ||
steemwizards | 0 | 662,963,485 | 0.9% | ||
neumannsalva | 0 | 574,931,952 | 0.45% | ||
stayoutoftherz | 0 | 15,463,753,727 | 0.22% | ||
abigail-dantes | 0 | 3,664,291,205 | 10% | ||
sanjeevm | 0 | 1,821,265,220,799 | 50% | ||
pixelfan | 0 | 48,146,837,018 | 5.8% | ||
macchiata | 0 | 2,580,645,930 | 0.44% | ||
isabelpena | 0 | 16,114,669,965 | 100% | ||
twoitguys | 0 | 6,166,626,637 | 50% | ||
joshruiz | 0 | 6,709,571,053 | 50% | ||
jasonbu | 0 | 12,252,196,708 | 18.75% | ||
val.halla | 0 | 2,869,753,262 | 10% | ||
jeanlucsr | 0 | 3,073,425,772 | 5% | ||
amitsharma | 0 | 113,904,731,072 | 100% | ||
appleskie | 0 | 2,060,383,021 | 11.87% | ||
iamphysical | 0 | 14,997,191,953 | 90% | ||
spiceboyz | 0 | 20,526,592,934 | 41% | ||
aaronleang | 0 | 5,083,841,944 | 25% | ||
zyx066 | 0 | 1,124,202,096 | 0.45% | ||
revo | 0 | 1,692,939,489 | 0.9% | ||
azulear | 0 | 1,526,838,384 | 100% | ||
djlethalskillz | 0 | 1,043,001,748 | 5% | ||
psicoluigi | 0 | 776,201,236 | 50% | ||
enrique89 | 0 | 12,596,700,080 | 22% | ||
mulletwang | 0 | 1,945,926,357 | 35% | ||
thelordsharvest | 0 | 776,590,313 | 0.9% | ||
massivevibration | 0 | 20,775,331,351 | 30% | ||
markjason | 0 | 2,292,359,675 | 11.87% | ||
calatorulmiop | 0 | 55,012,405,370 | 50% | ||
procryptix | 0 | 32,964,218,673 | 100% | ||
inthenow | 0 | 16,475,087,253 | 25% | ||
irbot | 0 | 875,719,854 | 25% | ||
nnnarvaez | 0 | 1,093,786,930 | 22% | ||
dauerossi | 0 | 5,483,035,633 | 30% | ||
meno | 0 | 3,801,952,833 | 0.45% | ||
isnochys | 0 | 7,754,506,365 | 9.36% | ||
sayee | 0 | 107,665,894,989 | 100% | ||
steemseph | 0 | 11,471,194,135 | 10% | ||
esteem.app | 0 | 121,066,238 | 0.5% | ||
bhoa | 0 | 721,787,879 | 5% | ||
enzor | 0 | 605,012,086 | 10% | ||
rdstm1985 | 0 | 1,596,730,150 | 100% | ||
kiaazad | 0 | 38,054,730,440 | 100% | ||
dreamm | 0 | 2,585,976,116 | 50% | ||
jatinhota | 0 | 31,325,049,081 | 40% | ||
carloserp-2000 | 0 | 3,070,231,188 | 100% | ||
notb4mycoffee | 0 | 505,204,846 | 0.9% | ||
arabisouri | 0 | 97,997,207,512 | 100% | ||
maverickfoo | 0 | 13,699,156,532 | 50% | ||
lifecruiser | 0 | 9,058,670,388 | 50% | ||
gianluccio | 0 | 82,959,310,556 | 36.9% | ||
sunsea | 0 | 500,425,663 | 0.45% | ||
postpromoter | 0 | 321,979,022,318 | 10% | ||
ciuoto | 0 | 5,119,598,867 | 20.5% | ||
bobinson | 0 | 799,020,041,591 | 100% | ||
steveconnor | 0 | 643,270,307 | 0.45% | ||
sankysanket18 | 0 | 2,376,784,979 | 50% | ||
dranren | 0 | 1,989,632,044 | 100% | ||
paulmoon410 | 0 | 499,123,882 | 10% | ||
maverickinvictus | 0 | 760,183,768 | 11.87% | ||
nicole-st | 0 | 814,836,008 | 0.45% | ||
aneilpatel | 0 | 641,089,104 | 50% | ||
carolineschell | 0 | 67,845,286,214 | 41% | ||
cronosclocks | 0 | 6,209,346,262 | 44% | ||
travoved | 0 | 1,773,131,261 | 50% | ||
aboutcoolscience | 0 | 4,154,889,999 | 10% | ||
singhrajat | 0 | 614,217,018 | 50% | ||
junebride | 0 | 1,080,230,366 | 5.93% | ||
vishire | 0 | 3,560,497,315 | 100% | ||
kneelyrac | 0 | 1,113,064,048 | 11.87% | ||
silenteyes | 0 | 3,569,283,142 | 50% | ||
traf | 0 | 1,826,780,051,576 | 48% | ||
v007007007 | 0 | 691,411,090 | 50% | ||
kenadis | 0 | 2,705,713,882 | 10% | ||
shonyishere | 0 | 5,263,794,586 | 100% | ||
robotics101 | 0 | 2,468,142,490 | 10% | ||
marcolino76 | 0 | 4,052,887,110 | 20.5% | ||
punchline | 0 | 2,472,867,475 | 0.9% | ||
jacopo.eth | 0 | 791,028,546 | 34.85% | ||
bellaian | 0 | 1,470,612,225 | 70% | ||
godlovermel25 | 0 | 407,307,943 | 21.37% | ||
frames | 0 | 772,498,855 | 25% | ||
r00sj3 | 0 | 17,815,138,551 | 5% | ||
sco | 0 | 2,670,121,694 | 10% | ||
anikekirsten | 0 | 515,107,823 | 5% | ||
ennyta | 0 | 993,997,127 | 50% | ||
juecoree | 0 | 6,308,245,583 | 7% | ||
awuahbenjamin | 0 | 1,263,206,984 | 100% | ||
r1s2g3 | 0 | 97,870,902,704 | 30% | ||
bartheek | 0 | 1,179,059,444 | 0.9% | ||
edwardstobia | 0 | 966,098,921 | 4.4% | ||
intrepidphotos | 0 | 173,638,432,105 | 7.5% | ||
angelbless | 0 | 546,668,979 | 11.87% | ||
fineartnow | 0 | 563,522,956 | 0.45% | ||
hijosdelhombre | 0 | 40,351,901,388 | 40% | ||
emjoe | 0 | 16,153,233,426 | 100% | ||
alequandro | 0 | 8,003,283,271 | 20.5% | ||
blocktrades.com | 0 | 757,727,902,589 | 0.88% | ||
fragmentarion | 0 | 2,466,593,569 | 10% | ||
gaming.yer | 0 | 545,872,118 | 100% | ||
utube | 0 | 677,636,574 | 0.9% | ||
tryskele | 0 | 1,244,766,971 | 5% | ||
bala41288 | 0 | 371,456,172,576 | 30% | ||
ahmedsy | 0 | 28,085,813,810 | 100% | ||
unicron | 0 | 2,922,045,720 | 60% | ||
ajai | 0 | 579,479,731 | 100% | ||
neneandy | 0 | 994,050,873 | 0.9% | ||
pab.ink | 0 | 5,815,670,104 | 5% | ||
soufiani | 0 | 532,697,579 | 0.36% | ||
philnewton | 0 | 1,130,942,347 | 12.5% | ||
indiaunited | 0 | 3,776,537,413,529 | 100% | ||
jazzhero | 0 | 4,886,970,261 | 7.5% | ||
steemflagrewards | 0 | 410,640,172,939 | 100% | ||
silentscreamer | 0 | 77,819,974,004 | 100% | ||
miguelangel2801 | 0 | 796,864,349 | 50% | ||
piumadoro | 0 | 20,966,826,968 | 41% | ||
yjcps | 0 | 5,254,404,474 | 100% | ||
eddiespino | 0 | 3,448,715,193,039 | 100% | ||
photohunt | 0 | 566,720,956 | 0.9% | ||
geopolis | 0 | 626,285,284 | 10% | ||
robertbira | 0 | 1,040,493,863 | 2.5% | ||
gohenry | 0 | 1,005,027,312 | 5.93% | ||
bhattg | 0 | 1,993,526,987 | 50% | ||
alexdory | 0 | 1,529,608,939 | 10% | ||
takowi | 0 | 15,557,255,963 | 0.9% | ||
charitybot | 0 | 4,825,874,196 | 100% | ||
cyprianj | 0 | 3,238,148,501 | 10% | ||
melvin7 | 0 | 3,175,947,151 | 5% | ||
francostem | 0 | 1,350,606,097 | 10% | ||
endopediatria | 0 | 695,806,150 | 20% | ||
rubencress | 0 | 692,504,567 | 11% | ||
croctopus | 0 | 1,447,788,618 | 100% | ||
michelmake | 0 | 44,844,796,405 | 50% | ||
ayushthedreamer | 0 | 917,837,887 | 50% | ||
mad-runner | 0 | 83,232,667,632 | 28.7% | ||
superlotto | 0 | 2,926,223,849 | 0.9% | ||
sbarandelli | 0 | 2,999,125,371 | 41% | ||
movingman | 0 | 797,572,237 | 20% | ||
delpilar | 0 | 934,959,443 | 25% | ||
mchandra | 0 | 1,176,684,701 | 5% | ||
grisvisa | 0 | 77,219,416,127 | 100% | ||
tomastonyperez | 0 | 17,118,554,130 | 50% | ||
elvigia | 0 | 11,215,576,001 | 50% | ||
muratkbesiroglu | 0 | 1,416,463,339 | 0.09% | ||
sanderjansenart | 0 | 744,996,034 | 0.45% | ||
vittoriozuccala | 0 | 15,649,895,621 | 20.5% | ||
manniman | 0 | 67,936,919,141 | 11% | ||
adamada | 0 | 58,350,445,576 | 10% | ||
laxam | 0 | 4,985,312,893 | 100% | ||
qberry | 0 | 535,429,765 | 0.45% | ||
raqibul | 0 | 2,131,668,831 | 50% | ||
tibfox | 0 | 771,239,985 | 25% | ||
paragism | 0 | 507,678,657 | 30% | ||
cyberdemon531 | 0 | 417,698,617,727 | 100% | ||
dagmardeeke | 0 | 1,980,509,754 | 44% | ||
blainjones | 0 | 5,004,846,408 | 3.75% | ||
melbourneswest | 0 | 750,940,198,169 | 100% | ||
ryenneleow | 0 | 5,833,686,443 | 90% | ||
gadrian | 0 | 30,763,282,925 | 7.5% | ||
jansher | 0 | 695,198,799 | 100% | ||
therising | 0 | 15,660,294,270 | 0.9% | ||
memepress | 0 | 812,521,071 | 25% | ||
gifty-e | 0 | 588,945,624 | 80% | ||
scruffy23 | 0 | 20,007,225,137 | 50% | ||
de-stem | 0 | 5,480,634,410 | 9.9% | ||
michellpiala | 0 | 638,342,791 | 11.87% | ||
gogreenbuddy | 0 | 697,627,116 | 0.9% | ||
spaghettiscience | 0 | 28,003,369,157 | 41% | ||
josedelacruz | 0 | 3,888,809,716 | 50% | ||
achimmertens | 0 | 939,681,818 | 0.45% | ||
manojbhatt | 0 | 11,601,758,770 | 100% | ||
kgakakillerg | 0 | 14,308,414,782 | 10% | ||
charitymemes | 0 | 534,493,884 | 100% | ||
rainbowbala | 0 | 2,995,254,462 | 100% | ||
el-dee-are-es | 0 | 39,887,854,037 | 10% | ||
erickyoussif | 0 | 597,477,953 | 100% | ||
drqamranbashir | 0 | 1,168,656,258 | 100% | ||
jorgespino | 0 | 4,225,161,779 | 44% | ||
bafi | 0 | 2,173,668,064 | 41% | ||
steemph.uae | 0 | 3,263,332,147 | 23.75% | ||
phage93 | 0 | 3,463,876,713 | 41% | ||
primersion | 0 | 228,024,680,649 | 20% | ||
deholt | 0 | 542,290,974 | 8.5% | ||
dlux-io | 0 | 1,843,510,944,695 | 100% | ||
eleazarvo | 0 | 648,899,204 | 4.4% | ||
serialfiller | 0 | 3,601,789,767 | 50% | ||
fw206 | 0 | 4,338,770,780,611 | 100% | ||
diabonua | 0 | 788,383,026 | 0.45% | ||
punkblogs | 0 | 2,113,810,663 | 30% | ||
bushradio | 0 | 6,901,064,888 | 60% | ||
davidesimoncini | 0 | 10,530,859,621 | 45.6% | ||
enforcer48 | 0 | 166,707,282,958 | 20% | ||
temitayo-pelumi | 0 | 817,386,526 | 10% | ||
andrick | 0 | 866,365,209 | 50% | ||
ragavee | 0 | 0 | 100% | ||
motherofalegend | 0 | 1,560,528,908 | 5% | ||
aliento | 0 | 1,099,786,664,085 | 44% | ||
doctor-cog-diss | 0 | 7,882,482,298 | 10% | ||
dailyspam | 0 | 11,354,559,238 | 50% | ||
acont | 0 | 39,972,226,849 | 50% | ||
uche-nna | 0 | 1,002,992,658 | 0.72% | ||
drawmeaship | 0 | 6,770,377,702 | 50% | ||
vietthuy | 0 | 810,711,003 | 50% | ||
deepu7 | 0 | 40,963,535,595 | 7.5% | ||
anaestrada12 | 0 | 1,476,821,434 | 100% | ||
sgbonus | 0 | 22,056,365,125 | 10% | ||
pacoandujar | 0 | 56,435,298,324 | 44% | ||
barbz | 0 | 94,949,164,372 | 100% | ||
citizendog | 0 | 724,671,685 | 0.9% | ||
marblely | 0 | 778,197,528 | 0.88% | ||
we-are-lucky | 0 | 2,353,201,973 | 6.6% | ||
cheese4ead | 0 | 553,626,309 | 0.45% | ||
carolinaelly | 0 | 2,662,059,677 | 100% | ||
indiaunited-bot | 0 | 3,918,595,436 | 100% | ||
nattybongo | 0 | 9,047,659,935 | 41% | ||
sarimanok | 0 | 1,281,915,976 | 11.87% | ||
doodle.danga | 0 | 2,366,421,926 | 41% | ||
roozeec | 0 | 497,755,000 | 10% | ||
mrnightmare89 | 0 | 1,003,935,970 | 11.87% | ||
damian-d | 0 | 0 | 25% | ||
bflanagin | 0 | 1,006,568,111 | 0.45% | ||
diogenes84 | 0 | 0 | 25% | ||
armandosodano | 0 | 2,152,416,434 | 0.45% | ||
ezunjoshy | 0 | 1,988,341,977 | 50% | ||
yourmind | 0 | 13,706,646,928 | 100% | ||
acousticguitar | 0 | 13,192,861,093 | 50% | ||
gerdtrudroepke | 0 | 12,154,410,146 | 5% | ||
goblinknackers | 0 | 41,838,203,059 | 7% | ||
reinaseq | 0 | 6,909,413,277 | 100% | ||
kylealex | 0 | 4,961,737,260 | 10% | ||
orlandogonzalez | 0 | 3,762,246,963 | 25% | ||
cleanplanet | 0 | 2,458,351,629 | 0.27% | ||
otp-one | 0 | 2,685,353,214 | 35% | ||
coccodema | 0 | 2,258,027,280 | 20.5% | ||
fran.frey | 0 | 4,214,477,344 | 50% | ||
thelittlebank | 0 | 2,921,278,977 | 0.45% | ||
pboulet | 0 | 17,723,835,210 | 8% | ||
stem-espanol | 0 | 33,030,623,999 | 100% | ||
voter001 | 0 | 2,344,889,216 | 2.6% | ||
voter002 | 0 | 2,647,287,342 | 6.5% | ||
alexxxdada | 0 | 1,309,601,465 | 100% | ||
cliffagreen | 0 | 1,381,786,379 | 10% | ||
aleestra | 0 | 11,754,486,483 | 80% | ||
mister-meeseeks | 0 | 22,899,874,951 | 25.5% | ||
admiralbot | 0 | 6,804,768,806 | 100% | ||
macoolette | 0 | 116,565,540,994 | 100% | ||
amansharma555 | 0 | 595,961,049 | 100% | ||
sincensura | 0 | 1,034,398,020 | 100% | ||
harpreetjanda | 0 | 743,543,752 | 2% | ||
thevil | 0 | 3,975,091,351 | 0.44% | ||
merlin7 | 0 | 1,749,346,703 | 0.9% | ||
thrasher666 | 0 | 2,166,500,174 | 60% | ||
brianoflondon | 0 | 3,501,753,554 | 0.13% | ||
giulyfarci52 | 0 | 1,722,948,742 | 50% | ||
esthersanchez | 0 | 3,993,626,354 | 60% | ||
steemcryptosicko | 0 | 1,795,460,118 | 0.18% | ||
certain | 0 | 114,435,139,482 | 100% | ||
middleearth | 0 | 1,666,388,464 | 41% | ||
adinapoli | 0 | 9,164,238,569 | 20.5% | ||
theycallmedan | 0 | 64,849,679,553,720 | 75% | ||
discovery-it | 0 | 889,854,584,508 | 41% | ||
misterengagement | 0 | 1,658,650,048 | 22.5% | ||
stem.witness | 0 | 548,806,701 | 10% | ||
devann | 0 | 4,564,923,029 | 3% | ||
hiddendragon | 0 | 637,594,693 | 38% | ||
robmojo | 0 | 922,244,205 | 1% | ||
double-negative | 0 | 523,802,737 | 20% | ||
khan.dayyanz | 0 | 61,331,306,531 | 90% | ||
wilmer14molina | 0 | 1,029,164,776 | 50% | ||
bit4bit | 0 | 1,203,148,415 | 0.9% | ||
michaias | 0 | 2,093,851,693 | 75% | ||
vaultec | 0 | 6,340,865,618 | 12% | ||
ozmash | 0 | 751,430,751 | 30% | ||
steemstorage | 0 | 1,018,981,969 | 0.9% | ||
aqua.nano | 0 | 2,439,518,492 | 100% | ||
juanbg | 0 | 5,686,687,913 | 20.5% | ||
e-r-k-a-n | 0 | 13,693,799,126 | 100% | ||
lallo | 0 | 22,083,283,084 | 41% | ||
crowdwitness | 0 | 2,250,265,688 | 5% | ||
monster-one | 0 | 10,182,083,091 | 35.2% | ||
cooperfelix | 0 | 2,272,534,014 | 28.7% | ||
limka | 0 | 96,994,196 | 76.16% | ||
some-asshole | 0 | 1,049,920,340 | 12.5% | ||
sofiag | 0 | 9,757,917,319 | 29.6% | ||
steemean | 0 | 10,107,116,149 | 5% | ||
quentinvb | 0 | 500,344,085 | 100% | ||
deriyon | 0 | 499,246,711 | 100% | ||
denizcakmak | 0 | 1,245,869,782 | 100% | ||
newton666 | 0 | 1,504,060,268 | 100% | ||
samuel.steem | 0 | 1,077,317,374 | 36.9% | ||
medro-martin | 0 | 12,061,645,712 | 95% | ||
rankmeupclub | 0 | 7,354,592,150 | 100% | ||
aaronkroeblinger | 0 | 13,177,708,719 | 50% | ||
olaexcel | 0 | 10,362,389,109 | 50% | ||
alenox | 0 | 3,586,689,253 | 100% | ||
photographercr | 0 | 20,962,564,399 | 9.6% | ||
titti | 0 | 20,063,619,812 | 41% | ||
maryincryptoland | 0 | 7,361,773,198 | 41% | ||
memehub | 0 | 92,664,939,892 | 100% | ||
epicdice | 0 | 594,549,668 | 0.27% | ||
stregamorgana | 0 | 1,618,967,145 | 41% | ||
meeplecomposer | 0 | 3,411,941,344 | 24.6% | ||
threespeak | 0 | 21,064,281,983,338 | 50% | ||
monsterjamgold | 0 | 4,685,564,910 | 10% | ||
rmu01 | 0 | 3,753,372,155 | 100% | ||
edencourage | 0 | 6,340,178,964 | 50% | ||
robibasa | 0 | 24,347,682,596 | 10% | ||
linita | 0 | 12,272,567,157 | 100% | ||
enjargames | 0 | 3,608,239,319 | 100% | ||
tinyhousecryptos | 0 | 500,880,730 | 5% | ||
aninsidejob | 0 | 7,084,943,720 | 100% | ||
iktisat | 0 | 795,249,803 | 100% | ||
maruskina | 0 | 38,310,662,564 | 20.5% | ||
rtron86 | 0 | 4,363,094,618 | 50% | ||
aicu | 0 | 8,143,971,365 | 0.9% | ||
walterprofe | 0 | 622,032,760 | 5% | ||
victoriaxl | 0 | 1,429,334,721 | 20.5% | ||
omodei | 0 | 1,306,064,816 | 41% | ||
thesoundof | 0 | 1,611,478,971 | 100% | ||
zeruxanime | 0 | 648,635,660 | 5% | ||
badfinger | 0 | 2,870,864,157 | 50% | ||
bala-ag | 0 | 1,139,207,886 | 30% | ||
bedazzled | 0 | 48,986,160,054 | 100% | ||
stemgeeks | 0 | 24,783,443,408 | 70% | ||
stemcuration | 0 | 1,574,374,992 | 70% | ||
babytarazkp | 0 | 4,279,455,133 | 40% | ||
capitanonema | 0 | 1,449,542,631 | 41% | ||
helengutier2 | 0 | 12,476,188,372 | 11% | ||
damaskinus | 0 | 865,617,633 | 20.5% | ||
abh12345.stem | 0 | 769,640,863 | 35% | ||
beta500 | 0 | 948,145,387 | 0.9% | ||
dechuck | 0 | 17,231,277,056 | 50% | ||
elianaicgomes | 0 | 5,338,598,750 | 7.5% | ||
kaeves4711 | 0 | 1,901,367,698 | 100% | ||
kanibot | 0 | 10,700,975,401 | 30% | ||
wanderingmoon | 0 | 3,485,784,517 | 50% | ||
shtup | 0 | 546,184,382 | 0.18% | ||
precarious | 0 | 499,638,716 | 50% | ||
entrepreneur.one | 0 | 2,592,663,251 | 100% | ||
steemstem-trig | 0 | 781,545,891 | 10% | ||
therealyme | 0 | 4,014,346,737 | 0.06% | ||
axel-blaze | 0 | 21,721,164,069 | 41% | ||
discovery-blog | 0 | 6,434,985,122 | 41% | ||
dmoonfire | 0 | 28,310,106,459 | 71% | ||
bilpcoin.pay | 0 | 524,760,303 | 10% | ||
yggdrasil.laguna | 0 | 392,126,750 | 35% | ||
riccc96 | 0 | 1,219,964,402 | 10.25% | ||
atheistrepublic | 0 | 881,574,332 | 0.45% | ||
cd-stem | 0 | 523,736,557 | 100% | ||
ibt-survival | 0 | 34,662,225,134 | 10% | ||
jennyferandtony | 0 | 1,375,495,775 | 100% | ||
bella.bear | 0 | 686,841,703 | 11.87% | ||
sarahandsam | 0 | 14,176,924,031 | 100% | ||
delilhavores | 0 | 9,476,770,760 | 41% | ||
hjmarseille | 0 | 1,558,408,040 | 36.9% | ||
zerotwo | 0 | 28,804,561,803 | 100% | ||
zirky | 0 | 10,989,236,024 | 25% | ||
sharkthelion | 0 | 670,003,842 | 25% | ||
chapmain | 0 | 103,619,818 | 100% | ||
peter-liang | 0 | 0 | 25% | ||
manic.calm | 0 | 969,043,040 | 100% | ||
bela29 | 0 | 493,500,634 | 25% | ||
julesquirin | 0 | 1,740,521,591 | 9.6% | ||
marpolaris | 0 | 6,034,573,835 | 44% | ||
romytokic | 0 | 1,602,955,592 | 20.5% | ||
peterale | 0 | 1,587,920,303 | 0.45% | ||
diyhub | 0 | 66,779,097,567 | 50% | ||
prize.hoard | 0 | 2,619,336,537 | 100% | ||
stuntman.mike | 0 | 9,706,788,005 | 100% | ||
fsm-core | 0 | 10,714,626,433 | 50% | ||
laruche | 0 | 45,151,436,077 | 1% | ||
ykretz | 0 | 2,315,982,822 | 5% | ||
hiveph | 0 | 31,146,444,859 | 23.75% | ||
hivephilippines | 0 | 153,261,555,345 | 25% | ||
stemsocial | 0 | 64,454,930,698 | 10% | ||
waivio.match | 0 | 881,060,717,962 | 14.8% | ||
dimeshana | 0 | 3,112,685,608 | 22% | ||
peterpanpan | 0 | 35,313,587,944 | 41% | ||
jessiparber23 | 0 | 2,988,325,128 | 44% | ||
mami.sheh7 | 0 | 650,935,531 | 11.87% | ||
meppij | 0 | 89,542,135,313 | 41% | ||
matteus57 | 0 | 3,636,337,524 | 41% | ||
ecency | 0 | 207,216,126,149 | 0.5% | ||
iameden | 0 | 1,016,844,237 | 11.87% | ||
taniagonzalez | 0 | 940,245,381 | 10% | ||
palimanali | 0 | 6,272,682,567 | 22% | ||
ilpaso | 0 | 1,475,239,518 | 20.5% | ||
ghaazi | 0 | 2,765,656,351 | 51% | ||
glasscity | 0 | 377,357,764 | 14.8% | ||
minihw | 0 | 0 | 100% | ||
sidjay | 0 | 1,550,321,379 | 30% | ||
flewsplash | 0 | 1,599,134,764 | 41% | ||
flowmaster | 0 | 9,947,441,407 | 29.6% | ||
quinnertronics | 0 | 30,373,394,825 | 12% | ||
olaunlimited | 0 | 43,090,211,088 | 21.6% | ||
ecency.stats | 0 | 141,078,427 | 0.5% | ||
dikshabihani | 0 | 783,252,363 | 50% | ||
mercurial9 | 0 | 42,148,887,980 | 100% | ||
bindalove | 0 | 1,087,967,227 | 41% | ||
engioi | 0 | 7,503,168,844 | 100% | ||
aabcent | 0 | 1,886,016,022 | 0.72% | ||
discohedge | 0 | 23,783,558,630 | 100% | ||
jonalyn2020 | 0 | 1,589,371,836 | 11.87% | ||
pfwaus | 0 | 1,330,084,487 | 100% | ||
monster-retos | 0 | 591,801,859 | 35.2% | ||
gabrieljr | 0 | 1,669,913,611 | 50% | ||
nbs.gmbh | 0 | 67,890,653,631 | 0.9% | ||
dorkpower | 0 | 1,352,353,783 | 35% | ||
barbyjr | 0 | 497,269,445 | 50% | ||
text2speech | 0 | 3,657,141,800 | 100% | ||
pankajkabdwal | 0 | 2,161,555,792 | 100% | ||
hiteshpandey | 0 | 3,486,753,669 | 80% | ||
hive-144994 | 0 | 497,985,915 | 100% | ||
rarereden | 0 | 3,435,277,334 | 100% | ||
kattycrochet | 0 | 17,638,030,747 | 24% | ||
esecholito | 0 | 45,778,303,839 | 100% | ||
shroomfund | 0 | 6,805,192,455 | 100% | ||
stemcur | 0 | 576,398,462 | 56% | ||
yogeshbhatt | 0 | 1,179,325,965 | 100% | ||
yaluna | 0 | 19,637,312,861 | 50% | ||
zacki11 | 0 | 2,422,787,313 | 100% | ||
meritocracy | 0 | 10,024,605,648 | 0.09% | ||
stemline | 0 | 4,473,325,997 | 35% | ||
sillybilly | 0 | 560,115,025 | 100% | ||
he-index | 0 | 4,450,255,500 | 15% | ||
meestemboom | 0 | 478,526,885 | 25% | ||
godfather.ftw | 0 | 57,436,590,697 | 90% | ||
dcrops | 0 | 2,653,848,815 | 0.45% | ||
scooter77.stem | 0 | 734,659,391 | 70% | ||
gr33nm4ster | 0 | 9,341,350,418 | 50% | ||
krishu.stem | 0 | 1,004,522,952 | 100% | ||
ruari | 0 | 953,104,191 | 100% | ||
peerfinance | 0 | 17,984,478,240 | 100% | ||
sofs-su | 0 | 34,871,051,996 | 30.3% | ||
endrius | 0 | 863,866,421 | 75% | ||
hectorsanchez18 | 0 | 21,303,150,966 | 100% | ||
dronegirl | 0 | 294,272,434 | 100% | ||
repayme4568 | 0 | 871,764,259 | 20.5% | ||
cbridges573 | 0 | 1,058,566,217 | 3.75% | ||
therealsnowjon | 0 | 2,275,970,274 | 22% | ||
adamada.stem | 0 | 2,559,336,726 | 100% | ||
arunbiju969 | 0 | 644,698,065 | 14% | ||
nanggroe1 | 0 | 1,540,994,960 | 40% | ||
dodovietnam | 0 | 714,861,598 | 0.45% | ||
brofi | 0 | 6,722,718,455,270 | 100% | ||
mayorkeys | 0 | 16,797,128,727 | 30% | ||
drricksanchez | 0 | 2,042,018,063 | 0.45% | ||
rendrianarma | 0 | 1,034,745,340 | 25.5% | ||
leonordomonol | 0 | 501,259,182 | 100% | ||
leveluplifestyle | 0 | 11,785,017,238 | 25.5% | ||
kemal1 | 0 | 289,794,790 | 100% | ||
superxsymbiote | 0 | 596,744,004 | 100% | ||
sarita3 | 0 | 1,502,636,708 | 41% | ||
simple1 | 0 | 285,592,478 | 100% | ||
okluvmee | 0 | 41,835,507,949 | 50% | ||
alexandra1301 | 0 | 7,045,121,660 | 100% | ||
sabujdip | 0 | 2,768,360,730 | 50% | ||
milagrosmhbl | 0 | 4,790,086,298 | 50% | ||
konchix | 0 | 1,584,424,546 | 50% | ||
luisestaba23 | 0 | 371,671,974 | 50% | ||
moviekeeda | 0 | 1,630,146,064 | 50% | ||
kkartdesign | 0 | 696,803,795 | 20.5% | ||
maridmc | 0 | 14,683,601,788 | 41% | ||
holovision.stem | 0 | 3,442,520,101 | 50% | ||
disha30 | 0 | 2,377,734,727 | 100% | ||
plint | 0 | 16,500,743,674 | 100% | ||
gaboamc2393 | 0 | 6,822,251,298 | 10% | ||
tzibido | 0 | 536,803,122 | 44% | ||
photolovers1 | 0 | 18,084,718,405 | 50% | ||
readthisplease | 0 | 2,853,436,816 | 2.7% | ||
tralb | 0 | 4,093,637,998 | 100% | ||
jessicaossom | 0 | 605,758,084 | 0.45% | ||
irenicus30 | 0 | 143,474,950,368 | 100% | ||
kamaleshwar | 0 | 12,423,776,611 | 100% | ||
chandra.shekar | 0 | 19,693,252,022 | 100% | ||
kannannv | 0 | 58,104,300,689 | 100% | ||
aliento.love | 0 | 1,381,567,533,798 | 44% | ||
pinkfloyd878 | 0 | 4,339,313,115 | 100% | ||
star.stem | 0 | 1,809,759,766 | 50% | ||
solominer.stem | 0 | 895,123,101 | 100% | ||
ayee11 | 0 | 909,369,208 | 100% | ||
lycanskiss | 0 | 1,976,326,483 | 100% | ||
mayberlys | 0 | 2,090,613,593 | 50% | ||
farmingtales | 0 | 2,475,396,550 | 41% | ||
mishoni | 0 | 2,078,481,467 | 100% | ||
vasko90 | 0 | 2,655,179,588 | 100% | ||
akeni | 0 | 2,616,099,358 | 90% | ||
laviesm | 0 | 5,652,097,762 | 50% | ||
untzuntzuntz | 0 | 52,904,799 | 1% | ||
ozohu | 0 | 708,848,251 | 13.5% | ||
seinkalar | 0 | 687,191,601 | 0.9% | ||
onwugbenuvictor | 0 | 5,889,197,132 | 15% | ||
curvymosquito83 | 0 | 1,508,166,169 | 100% | ||
aries90 | 0 | 7,110,152,431 | 0.9% | ||
lazy001 | 0 | 1,492,216,598 | 100% | ||
onewolfe | 0 | 497,683,018 | 25% | ||
migka | 0 | 3,046,157,582 | 90% | ||
dimascastillo90 | 0 | 40,152,558,206 | 41% | ||
eylz619 | 0 | 1,128,756,589 | 11.87% | ||
iradeorum | 0 | 500,084,587 | 100% | ||
axelx12 | 0 | 2,226,590,514 | 100% | ||
cryptokungfu | 0 | 10,259,385,346 | 100% | ||
dsky | 0 | 930,873,767,465 | 100% | ||
hiramdo | 0 | 8,856,186,103 | 44% | ||
cryptogillone | 0 | 882,505,348 | 41% | ||
orangeandwater | 0 | 2,727,562,479 | 100% | ||
deraaa | 0 | 1,572,461,216 | 10% | ||
mintfinch | 0 | 3,996,021,996 | 100% | ||
limeric19 | 0 | 1,202,669,225 | 50% | ||
limeric01 | 0 | 1,031,264,894 | 50% | ||
castles | 0 | 820,018,307 | 41% | ||
shopnilhasan | 0 | 1,087,589,597 | 50% | ||
meltysquid | 0 | 40,027,466,925 | 100% | ||
tanray | 0 | 1,519,047,070 | 100% | ||
doctorfate | 0 | 525,658,694 | 25% | ||
cassioandro | 0 | 642,284,694 | 100% | ||
rcsupport | 0 | 18,194,540,220 | 44% | ||
waivio.curator | 0 | 1,591,154,817 | 2.96% | ||
estherscott | 0 | 1,208,040,830 | 6.75% | ||
raph1 | 0 | 3,390,768,635 | 100% | ||
soyuntito | 0 | 7,582,210,074 | 100% | ||
winniecorp | 0 | 867,780,937 | 13.5% | ||
khoola | 0 | 638,880,619 | 25% | ||
low-key103 | 0 | 612,907,983 | 23.75% | ||
cryptohaytham | 0 | 2,691,662,861 | 50% | ||
pompeylad | 0 | 15,893,201,876 | 100% | ||
ledgar | 0 | 5,450,006,787 | 100% | ||
attentionneeded | 0 | 2,269,039,532 | 20% | ||
latiag | 0 | 9,078,768,771 | 44% | ||
zerothree | 0 | 66,570,788,927 | 100% | ||
omosefe | 0 | 1,735,673,966 | 13.5% | ||
saboin.stem | 0 | 589,479,756 | 70% | ||
manuphotos | 0 | 1,056,623,022 | 22% | ||
zerofour | 0 | 28,094,571,341 | 100% | ||
erochka | 0 | 697,218,693 | 22% | ||
hironakamura | 0 | 3,012,611,088 | 27% | ||
martinlazizi | 0 | 605,539,998 | 27% | ||
zerozerozero | 0 | 44,687,582,451 | 100% | ||
gwajnberg | 0 | 1,577,748,535 | 63% | ||
zerozeroone | 0 | 33,212,670,166 | 100% | ||
kephler | 0 | 5,186,380,332 | 20% | ||
pob-curator | 0 | 0 | 1% | ||
neoxag-curator | 0 | 776,509,709 | 30% | ||
stem-curator | 0 | 684,554,785 | 100% | ||
karelnt | 0 | 497,483,638 | 11% | ||
balaz | 0 | 6,169,418,087 | 30% | ||
gledys19 | 0 | 8,673,562,246 | 100% | ||
nkechi | 0 | 553,361,714 | 12.75% | ||
vyb-curator | 0 | 0 | 1% | ||
dondido | 0 | 3,707,405,043 | 0.9% | ||
xcu | 0 | 324,659,796,890 | 44% | ||
egboncass | 0 | 506,837,986 | 8.1% | ||
asherrobert | 0 | 548,346,232 | 13.5% | ||
dusunenkalpp | 0 | 630,624,530 | 70% | ||
cryptocubangirl | 0 | 785,343,170 | 22% | ||
cryptodive | 0 | 51,530,508,638 | 100% | ||
ettore-san | 0 | 2,418,563,091 | 41% | ||
conocorp | 0 | 3,949,794,834 | 100% | ||
prosocialise | 0 | 4,868,142,814 | 5% | ||
reineesmay | 0 | 1,480,861,517 | 9.44% | ||
fabiodc | 0 | 555,886,427 | 22% | ||
street.curator | 0 | 3,516,062,532 | 50% | ||
isabel-vihu | 0 | 4,776,524,316 | 25% | ||
ertytux | 0 | 1,058,579,523 | 44% | ||
mallorcamum | 0 | 1,151,002,727 | 25% | ||
mugueto2022 | 0 | 498,749,137 | 20% | ||
windail1 | 0 | 2,019,286,203 | 100% | ||
buezor | 0 | 689,338,916 | 30% | ||
xblocktrades | 0 | 0 | -0.88% | ||
xalpha | 0 | 0 | -0.88% | ||
mr-rent | 0 | 2,537,990,243 | 75% | ||
sperosamuel15 | 0 | 2,810,583,034 | 50% | ||
xtheycallmedan | 0 | -645,621,652 | -75% | ||
xthreespeak | 0 | -298,640,867 | -50% | ||
xtrafalgar | 0 | -302,971,704 | -48% | ||
xecency | 0 | -21,165,679 | -0.5% | ||
lauramoz | 0 | 703,512,945 | 22% | ||
gmzorn | 0 | 2,544,909,791 | 100% | ||
idksamad78699 | 0 | 3,688,136,450 | 100% | ||
jasedmf | 0 | 1,553,244,329 | 100% | ||
meta007 | 0 | 802,248,921 | 49% | ||
gaming.grants | 0 | 1,584,456,059 | 100% | ||
trueliving43 | 0 | 203,923,347 | 100% |
when can i have a hive web browser, purchase a hive web domain that last forever ?
author | ackza |
---|---|
permlink | rergzy |
category | hive-163521 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-07-09 16:12:00 |
last_update | 2022-07-09 16:12:00 |
depth | 1 |
children | 0 |
last_payout | 2022-07-16 16:12:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 82 |
author_reputation | 287,802,108,975,579 |
root_title | "Step by step guide to associate a domain or sub domain to your Honeycomb SPKCC node using Caddy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,706,096 |
net_rshares | 0 |
 Each cover domain resolves to an IP address that is located at a commercial VPS (Virtual Private Server) provider. The public-facing server forwards all incoming traffic via a VPN to a 'Blot' server that handles actual connection requests from clients. It is setup for optional SSL client authentication: if a client sends a valid client certificate (only implants can do that), the connection is forwarded to the 'Honeycomb' toolserver that communicates with the implant; if a valid certificate is missing (which is the case if someone tries to open the cover domain website by accident), the traffic is forwarded to a cover server that delivers an unsuspicious looking website. The Honeycomb toolserver receives exfiltrated information from the implant; an operator can also task the implant to execute jobs on the target computer, so the toolserver acts as a C2 (command and control) server for the implant. Similar functionality (though limited to Windows) is provided by the RickBobby project. See the classified user and developer guides for HIVE. - https://wikileaks.org/ciav7p1/ hahaha
author | ackza |
---|---|
permlink | rerh36 |
category | hive-163521 |
json_metadata | {"image":["https://images.hive.blog/DQmZArvwCwV3PzAqtCZfhim7L4LNJvjZfujJNLTLiLufr7P/image.png"],"links":["https://wikileaks.org/ciav7p1/"],"app":"hiveblog/0.1"} |
created | 2022-07-09 16:13:57 |
last_update | 2022-07-09 16:13:57 |
depth | 1 |
children | 1 |
last_payout | 2022-07-16 16:13:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.029 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,197 |
author_reputation | 287,802,108,975,579 |
root_title | "Step by step guide to associate a domain or sub domain to your Honeycomb SPKCC node using Caddy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,706,139 |
net_rshares | 106,848,444,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ackza | 0 | 106,848,444,000 | 100% |

author | ackza |
---|---|
permlink | resavc |
category | hive-163521 |
json_metadata | {"image":["https://images.hive.blog/DQmVy6ZRAL4NfKYVR9TfnNCfvob6zEdQs7ev84M8SfJDGtY/image.png"],"app":"hiveblog/0.1"} |
created | 2022-07-10 02:57:15 |
last_update | 2022-07-10 02:57:15 |
depth | 2 |
children | 0 |
last_payout | 2022-07-17 02:57:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 96 |
author_reputation | 287,802,108,975,579 |
root_title | "Step by step guide to associate a domain or sub domain to your Honeycomb SPKCC node using Caddy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,717,212 |
net_rshares | 0 |
 | <div class="phishy"><u><h4>You have received a __1UP__ from @gwajnberg!</h4></u></div> The @oneup-cartel will soon upvote you with:<hr> __@stem-curator, @vyb-curator, @pob-curator, @neoxag-curator__ <hr>_And they will bring !PIZZA 🍕._ -|- <sup>[Learn more](https://peakd.com/hive-102223/@flauwy/the-curation-cartel-1up-trigger-smart-voting-mana-and-high-delegation-returns-for-14-different-tribes) about our delegation service to earn daily rewards. Join the Cartel on [Discord](https://discord.gg/mvtAneE3Ca).</sup>
author | curation-cartel |
---|---|
permlink | re-step-by-step-guide-to-associate-a-domain-or-sub-domain-to-your-honeycomb-spkcc-node-using-caddy-20220708t152723z |
category | hive-163521 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2022-07-08 15:27:24 |
last_update | 2022-07-08 15:27:24 |
depth | 1 |
children | 0 |
last_payout | 2022-07-15 15:27:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 668 |
author_reputation | 1,123,882,653,763 |
root_title | "Step by step guide to associate a domain or sub domain to your Honeycomb SPKCC node using Caddy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,677,728 |
net_rshares | 0 |
<div class="pull-left">https://cdn.steemitimages.com/DQmTAn3c753LR7bHCLPo96g9UvRMaPFwaMYn8VQZa85xczC/discovery_logo_colore%20-%20Copia.png</div><br> This post was shared and voted inside the discord by the curators team of <a href="https://discord.gg/cMMp943"> discovery-it</a> <br>Join our community! <a href = "https://hive.blog/trending/hive-193212"> hive-193212</a><br>Discovery-it is also a Witness, vote for us <a href = "https://hivesigner.com/sign/account-witness-vote?witness=discovery-it&approve=true"> here</a> <br>Delegate to us for passive income. Check our <a href = "https://hive.blog/hive-193212/@discovery-it/delegations-program-80-fee-back"> 80% fee-back Program</a> <hr>
author | discovery-it |
---|---|
permlink | re-balaz-qf2cn3neps |
category | hive-163521 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2022-07-08 21:23:21 |
last_update | 2022-07-08 21:23:21 |
depth | 1 |
children | 0 |
last_payout | 2022-07-15 21:23:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 690 |
author_reputation | 67,483,895,022,759 |
root_title | "Step by step guide to associate a domain or sub domain to your Honeycomb SPKCC node using Caddy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,686,927 |
net_rshares | 0 |
<div class="pull-right"><a href="https://steempeak.com/trending/hive-189641"><img src="https://cdn.steemitimages.com/DQmV9e1dikviiK47vokoSCH3WjuGWrd6PScpsgEL8JBEZp5/icon_comments.png"></a></div> ###### Thank you for sharing this amazing post on HIVE! - Your content got selected by our fellow curator @priyanarc & you just received a little thank you via an upvote from our **non-profit** curation initiative! - You will be **featured in** one of our recurring **curation compilations** and on our **pinterest** boards! Both are aiming to offer you a **stage to widen your audience** within and outside of the DIY scene of hive. **Join** the official [DIYHub community on HIVE](https://peakd.com/trending/hive-189641) and show us more of your amazing work and feel free to connect with us and other DIYers via our discord server: https://discord.gg/mY5uCfQ ! If you want to support our goal to motivate other DIY/art/music/homesteading/... creators just delegate to us and earn 100% of your curation rewards! ###### Stay creative & hive on!
author | diyhub |
---|---|
permlink | re-step-by-step-guide-to-associate-a-domain-or-sub-domain-to-your-honeycomb-spkcc-node-using-caddy-20220709t000004z |
category | hive-163521 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2022-07-09 00:00:03 |
last_update | 2022-07-09 00:00:03 |
depth | 1 |
children | 0 |
last_payout | 2022-07-16 00:00:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,046 |
author_reputation | 533,418,234,644,779 |
root_title | "Step by step guide to associate a domain or sub domain to your Honeycomb SPKCC node using Caddy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,689,680 |
net_rshares | 0 |
Exactly this is why I was not using a domain for my nodes, I had the domain but had difficulties setting up the SSL and didn't bother to fix it as it was not of crucial importance. Your way of doing it with caddy is easy-peasy, it took me a bit to set the correct A record/nameservers but I didn't have to touch the SSL part at all. As always, super-duper tuts from you, THANK YOU THANK YOU! 😁
author | drlobes |
---|---|
permlink | re-balaz-2022710t91841332z |
category | hive-163521 |
json_metadata | {"tags":["spk","honeycomb","neoxian","caddy","coding","archon","node","dlux","stem","pob"],"app":"ecency/3.0.24-vision","format":"markdown+html"} |
created | 2022-07-10 06:21:39 |
last_update | 2022-07-10 06:21:39 |
depth | 1 |
children | 0 |
last_payout | 2022-07-17 06:21:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.015 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 394 |
author_reputation | 190,296,122,343,584 |
root_title | "Step by step guide to associate a domain or sub domain to your Honeycomb SPKCC node using Caddy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,719,513 |
net_rshares | 55,915,209,015 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dustsweeper | 0 | 52,242,031,167 | 6.93% | ||
stemgeeks | 0 | 3,480,208,983 | 10% | ||
stemcuration | 0 | 180,176,641 | 10% | ||
yggdrasil.laguna | 0 | 12,792,224 | 5% |
Your content has been **voted** as a part of [Encouragement program](https://ecency.com/ecency/@good-karma/encouragement-program-continues-82eafcd10a299). Keep up the good work! <br><br>Use Ecency daily to boost your growth on platform! <br><br><b>Support Ecency</b><br>[Vote for new Proposal](https://hivesigner.com/sign/update-proposal-votes?proposal_ids=%5B197%5D&approve=true)<br>[Delegate HP and earn more](https://ecency.com/hive-125125/@ecency/daily-100-curation-rewards)
author | ecency |
---|---|
permlink | re-202278t8195675z |
category | hive-163521 |
json_metadata | {"tags":["ecency"],"app":"ecency/3.0.20-welcome","format":"markdown+html"} |
created | 2022-07-08 08:19:57 |
last_update | 2022-07-08 08:19:57 |
depth | 1 |
children | 0 |
last_payout | 2022-07-15 08:19:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 478 |
author_reputation | 618,484,007,957,120 |
root_title | "Step by step guide to associate a domain or sub domain to your Honeycomb SPKCC node using Caddy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,669,223 |
net_rshares | 0 |
You should make a collection of your tutorials. !discovery 41
author | enforcer48 |
---|---|
permlink | re-balaz-req0qb |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2022.05.9"} |
created | 2022-07-08 21:22:57 |
last_update | 2022-07-08 21:22:57 |
depth | 1 |
children | 0 |
last_payout | 2022-07-15 21:22:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.022 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 62 |
author_reputation | 426,238,777,098,689 |
root_title | "Step by step guide to associate a domain or sub domain to your Honeycomb SPKCC node using Caddy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,686,918 |
net_rshares | 84,697,256,514 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ackza | 0 | 109,026,761,520 | 100% | ||
stimialiti | 0 | -23,494,451,484 | -100% | ||
fersher | 0 | -835,053,522 | -100% |
Thanks for this tutorial! This should be public for everyone that wants to run it! !1UP <div class=text-center> You can earn passive income by delegation of tribe tokens to "The Cartel". [](https://discord.gg/zQrvxAu7mu) Click this banner to join "The Cartel" discord server to know more. </div>
author | gwajnberg |
---|---|
permlink | repk12 |
category | hive-163521 |
json_metadata | {"tags":["stem"],"image":["https://images.hive.blog/p/FUkUE5bzkAZT3HzV5tJDiU2ik81PCd4JCyhWnRcDN8XJsVFY3UNB8DCSmoM2ujRpecRrPXsPH9dFMuJKxLKfeZPBgLnZuUbnYbwhioLnFLQPnge8EMm1SCsLqC5EQSHEM7uy7Bso7uBpiM6je1T8qfEb8c4wuu3hF5XU?format=match&mode=fit"],"links":["https://discord.gg/zQrvxAu7mu"],"app":"stemgeeks/0.1","canonical_url":"https://stemgeeks.net/@gwajnberg/repk12"} |
created | 2022-07-08 15:22:15 |
last_update | 2022-07-08 15:22:15 |
depth | 1 |
children | 0 |
last_payout | 2022-07-15 15:22:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.030 HBD |
curator_payout_value | 0.030 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 538 |
author_reputation | 369,686,874,726,539 |
root_title | "Step by step guide to associate a domain or sub domain to your Honeycomb SPKCC node using Caddy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,677,596 |
net_rshares | 114,941,503,440 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ackza | 0 | 112,801,377,394 | 100% | ||
stemgeeks | 0 | 2,048,796,192 | 6% | ||
stemcuration | 0 | 87,283,904 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% | ||
saboin.stem | 0 | 4,045,950 | 6% |
Congratulations @balaz! You have completed the following achievement on the Hive blockchain and have been rewarded with new badge(s): <table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@balaz/upvoted.png?202207080941"></td><td>You received more than 1500 upvotes.<br>Your next target is to reach 1750 upvotes.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@balaz) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Check out the last post from @hivebuzz:** <table><tr><td><a href="/hive-122221/@hivebuzz/pum-202206-delegations"><img src="https://images.hive.blog/64x128/https://i.imgur.com/fg8QnBc.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202206-delegations">Our Hive Power Delegations to the June PUM Winners </a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pud-202207-feedback"><img src="https://images.hive.blog/64x128/https://i.imgur.com/zHjYI1k.jpg"></a></td><td><a href="/hive-122221/@hivebuzz/pud-202207-feedback">Feedback from the July 1st Hive Power Up Day</a></td></tr></table> ###### Support the HiveBuzz project. [Vote](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22199%22%5D&approve=true) for [our proposal](https://peakd.com/me/proposals/199)!
author | hivebuzz |
---|---|
permlink | notify-balaz-20220708t100250 |
category | hive-163521 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2022-07-08 10:02:51 |
last_update | 2022-07-08 10:02:51 |
depth | 1 |
children | 0 |
last_payout | 2022-07-15 10:02:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,407 |
author_reputation | 369,332,065,567,496 |
root_title | "Step by step guide to associate a domain or sub domain to your Honeycomb SPKCC node using Caddy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,670,744 |
net_rshares | 0 |
This post has been manually curated by @bhattg from Indiaunited community. Join us on our [Discord Server](https://discord.gg/bGmS2tE). Do you know that you can earn a passive income by delegating to @indiaunited. We share 100 % of the curation rewards with the delegators. Here are some handy links for delegations: [100HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=182230.11140876953%20VESTS), [250HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=455575.27852192376%20VESTS), [500HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=911150.5570438475%20VESTS), [1000HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=1822301.114087695%20VESTS). Read our latest [announcement post](https://hive.blog/hive-186042/@indiaunited/indiaunited-2-0-active-again-with-a-lot-more-energy-this-time) to get more information. [](https://discord.gg/bGmS2tE) <sub>**Please contribute to the community by upvoting this comment and posts made by @indiaunited.**</sub>
author | indiaunited |
---|---|
permlink | indiaunited-1657292009339 |
category | hive-163521 |
json_metadata | {"app":"hiveblog/0.1","tags":["spk","honeycomb","neoxian","caddy","coding","archon","node","dlux","stem","pob"]} |
created | 2022-07-08 14:53:30 |
last_update | 2022-07-08 14:53:30 |
depth | 1 |
children | 0 |
last_payout | 2022-07-15 14:53:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,252 |
author_reputation | 96,843,314,998,519 |
root_title | "Step by step guide to associate a domain or sub domain to your Honeycomb SPKCC node using Caddy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,676,925 |
net_rshares | 0 |
Interesting, interesting, when did you start using this?
author | manniman |
---|---|
permlink | re-balaz-repotq |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2022.05.9"} |
created | 2022-07-08 17:05:51 |
last_update | 2022-07-08 17:05:51 |
depth | 1 |
children | 0 |
last_payout | 2022-07-15 17:05:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.031 HBD |
curator_payout_value | 0.031 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 56 |
author_reputation | 77,790,724,868,389 |
root_title | "Step by step guide to associate a domain or sub domain to your Honeycomb SPKCC node using Caddy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,681,007 |
net_rshares | 117,241,040,759 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ackza | 0 | 115,103,645,618 | 100% | ||
stemgeeks | 0 | 2,046,293,097 | 6% | ||
stemcuration | 0 | 87,120,174 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% | ||
saboin.stem | 0 | 3,981,870 | 6% |
Don't forget to add an AAAA record for ipv6 support.
author | rishi556 |
---|---|
permlink | rk61r2 |
category | hive-163521 |
json_metadata | {"tags":["stem"],"app":"stemgeeks/0.1","canonical_url":"https://stemgeeks.net/@rishi556/rk61r2"} |
created | 2022-10-22 17:54:39 |
last_update | 2022-10-22 17:54:39 |
depth | 1 |
children | 0 |
last_payout | 2022-10-29 17:54:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 52 |
author_reputation | 132,735,189,827,616 |
root_title | "Step by step guide to associate a domain or sub domain to your Honeycomb SPKCC node using Caddy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 117,686,801 |
net_rshares | 0 |
<div class='text-justify'> <div class='pull-left'> <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div> Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us! Please consider delegating to the @stemsocial account (85% of the curation rewards are returned). You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support. <br /> <br /> </div>
author | stemsocial |
---|---|
permlink | re-balaz-step-by-step-guide-to-associate-a-domain-or-sub-domain-to-your-honeycomb-spkcc-node-using-caddy-20220708t123308254z |
category | hive-163521 |
json_metadata | {"app":"STEMsocial"} |
created | 2022-07-08 12:33:09 |
last_update | 2022-07-08 12:33:09 |
depth | 1 |
children | 0 |
last_payout | 2022-07-15 12:33:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 565 |
author_reputation | 22,918,229,493,305 |
root_title | "Step by step guide to associate a domain or sub domain to your Honeycomb SPKCC node using Caddy" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,673,480 |
net_rshares | 0 |