<html> <p><img src="https://cdn.pixabay.com/photo/2014/12/27/16/38/planet-581239_640.jpg" width="640" height="360"/></p> <p>IPFS is the Interplanetary Filesystem, it's a new layer of the internet, sort of like the World Wide Web. But IPFS was built in a Peer To Peer model with the modern Internet in mind. And it runs on nearly everything, even Raspberry Pi computers.</p> <p>Currently it only supports static content, you can upload entire websites as long as the website uses only client-side javascript. You can't run code on the server-side (yet). But there is a dynamic naming system, the IPNS, so that you can update your online content without needing to break old links or create new ones.</p> <p>It's not just for websites though, there's a ton of cat pictures too. You can basically store any file-type on IPFS, and it's free to use.</p> <p>I've set up a writable IPFS Gateway at RelayRouter.com:8080/ipfs/, in order to see anything there you'll need an IPFS hash like this one QmTbhNNgnSzDnQj8mLELcxqZKwUwbzpnHj2iMeqscjpDEF. It goes at the end of the url like this: <a href="http://relayrouter.com:8080/ipfs/QmTbhNNgnSzDnQj8mLELcxqZKwUwbzpnHj2iMeqscjpDEF">http://relayrouter.com:8080/ipfs/QmTbhNNgnSzDnQj8mLELcxqZKwUwbzpnHj2iMeqscjpDEF</a></p> <p></p> <p>Writing data to IPFS through a gateway can be a little bit tricky though, you will need to post the data from your own html or application, and the hash is what gets returned in an http header named Ipfs-Hash. (I have no idea why the IPFS developers decided to return the data as an http header instead of just putting it in the body of the response, but there's nothing I can do about it at this point.)</p> <p>Also, please note that anything you upload to any writable IPFS Gateway will still need to be pinned by you as an IPFS User to make that data persistent. Otherwise the data that you upload may get wiped at the next garbage collection process, which happens regularly.</p> <p>Anyway, I believe there should be many more IPFS gateways out there so I wanted to share with you how I set mine up.</p> <p>First I got a VPS from <a href="https://www.ssdnodes.com/startup-specials/">https://www.ssdnodes.com/startup-specials/ </a>and I chose Ubuntu 16 as the operating system for this VPS. Then I SSH'd into the VPS from my local PC and entered the following commands:</p> <blockquote><code>apt-get update</code></blockquote> <blockquote><code>apt-get install tar wget nano</code></blockquote> <blockquote><code>wget https://dist.ipfs.io/go-ipfs/v0.4.10/go-ipfs_v0.4.10_linux-amd64.tar.gz</code></blockquote> <blockquote><code>tar xfv go-ipfs_v0.4.10_linux-amd64.tar.gz</code></blockquote> <blockquote><code>cd go-ipfs</code></blockquote> <blockquote><code>./install.sh</code></blockquote> <blockquote><code>adduser ipfs</code></blockquote> <blockquote><code>su ipfs</code></blockquote> <blockquote><code>ipfs init</code></blockquote> <blockquote><code>ipfs config --json Discovery.MDNS.Enabled false</code></blockquote> <blockquote><code>ipfs config --json Swarm.AddrFilters '[ "/ip4/10.0.0.0/ipcidr/8", "/ip4/100.64.0.0/ipcidr/10", "/ip4/169.254.0.0/ipcidr/16", "/ip4/172.16.0.0/ipcidr/12", "/ip4/192.0.0.0/ipcidr/24", "/ip4/192.0.0.0/ipcidr/29", "/ip4/192.0.0.8/ipcidr/32", "/ip4/192.0.0.170/ipcidr/32", "/ip4/192.0.0.171/ipcidr/32", "/ip4/192.0.2.0/ipcidr/24", "/ip4/192.168.0.0/ipcidr/16", "/ip4/198.18.0.0/ipcidr/15", "/ip4/198.51.100.0/ipcidr/24", "/ip4/203.0.113.0/ipcidr/24", "/ip4/240.0.0.0/ipcidr/4" ]'</code></blockquote> <blockquote><code>ipfs daemon &</code></blockquote> <p>At this point we have IPFS installed and running on the VPS, but we can only use it from the command line. So now for the fun part, we need to make it a writable gateway and enable CORS. We need to open the file at ~/.ipfs/config.</p> <p>First make sure your in user "ipfs" instead of "root", if your not sure then type <code>whoami</code> to find out and then type <code>su ipfs</code> if you need to switch to the ipfs user.</p> <p>Once you've made sure that you're logged in to your VPS as the ipfs user then enter the following command.</p> <p><code>nano ~/.ipfs/config</code></p> <p>Now we will change line where it reads <code>"Gateway": "/ip4/127.0.0.1/tcp/8080",</code></p> <p>We need to change it to <code>"Gateway": "/ip4/0.0.0.0/tcp/8080",</code></p> <p>Then scroll down further to the Gateway section. We need to change it to look like this:</p> <blockquote><code> "Gateway": {</code></blockquote> <blockquote><code> "HTTPHeaders": {</code></blockquote> <blockquote><code> "Access-Control-Allow-Headers": [</code></blockquote> <blockquote><code> "X-Requested-With",</code></blockquote> <blockquote><code> "Access-Control-Expose-Headers",</code></blockquote> <blockquote><code> "Range"</code></blockquote> <blockquote><code> ],</code></blockquote> <blockquote><code> "Access-Control-Expose-Headers": [</code></blockquote> <blockquote><code> "Location",</code></blockquote> <blockquote><code> "Ipfs-Hash"</code></blockquote> <blockquote><code> ],</code></blockquote> <blockquote><code> "Access-Control-Allow-Methods": [</code></blockquote> <blockquote><code> "GET",</code></blockquote> <blockquote><code> "POST"</code></blockquote> <blockquote><code> ],</code></blockquote> <blockquote><code> "Access-Control-Allow-Origin": [</code></blockquote> <blockquote><code> "*"</code></blockquote> <blockquote><code> ],</code></blockquote> <blockquote><code> "X-Special-Header": [</code></blockquote> <blockquote><code> "Access-Control-Expose-Headers: Ipfs-Hash"</code></blockquote> <blockquote><code> ]</code></blockquote> <blockquote><code> },</code></blockquote> <blockquote><code> "PathPrefixes": [],</code></blockquote> <blockquote><code> "RootRedirect": "",</code></blockquote> <blockquote><code> "Writable": true</code></blockquote> <blockquote><code> },</code></blockquote> <p>What we just did there was change the gateway settings to allow writing (posting) and CORS for cross-domain requests. There only one thing left to do now. Enter the following command to instruct your VPS to run IPFS every time it boots up:</p> <blockquote><code>sed -i -e '$i /bin/su ipfs -c "/usr/local/bin/ipfs daemon &"\n' /etc/rc.local</code></blockquote> <p>Then you should reboot your VPS, give it a minute to finish booting, and then check your newly set up gateway by entering its IP Address or URL into a web browser (please keep in mind the default port is 8080) with an IPFS hash, just like at <a href="http://relayrouter.com:8080/ipfs/QmTbhNNgnSzDnQj8mLELcxqZKwUwbzpnHj2iMeqscjpDEF">http://relayrouter.com:8080/ipfs/QmTbhNNgnSzDnQj8mLELcxqZKwUwbzpnHj2iMeqscjpDEF </a>but with your own VPS server's address.</p> <p>Congratulations, you now have your very own IPFS Gateway! Once it's set up you may want to consider announcing it here on SteemIt so that more people can find more content.</p> <p>Now, IPFS doesn't just need Gateways, it also needs a Search Engine. So I would like to encourage anyone who's interested to visit <a href="https://github.com/ipfs-search/ipfs-search">https://github.com/ipfs-search/ipfs-search</a> and check out this awesome project which I totally had nothing at all to do with. They are in need of hosting and developers.</p> </html>
author | anomaly |
---|---|
permlink | ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests |
category | technology |
json_metadata | {"tags":["technology","blog","news","science"],"image":["https://cdn.pixabay.com/photo/2014/12/27/16/38/planet-581239_640.jpg","https://steemitimages.com/DQmNrngttXKVni35vSH9UuwMjcFjF7EKoX5TVGBn5fgt2vn/QmTbhNNgnSzDnQj8mLELcxqZKwUwbzpnHj2iMeqscjpDEF.jpg"],"links":["http://relayrouter.com:8080/ipfs/QmTbhNNgnSzDnQj8mLELcxqZKwUwbzpnHj2iMeqscjpDEF","https://www.ssdnodes.com/startup-specials/","https://github.com/ipfs-search/ipfs-search"],"app":"steemit/0.1","format":"html"} |
created | 2017-09-28 06:32:33 |
last_update | 2017-09-28 06:32:33 |
depth | 0 |
children | 101 |
last_payout | 2017-10-05 06:32:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 6.640 HBD |
curator_payout_value | 0.744 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.100 HBD |
body_length | 8,593 |
author_reputation | 29,354,604,876,030 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,154,034 |
net_rshares | 2,561,791,573,768 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
team | 0 | 83,257,183,761 | 10% | ||
digi3d | 0 | 0 | 100% | ||
jackkang | 0 | 1,429,392,071,921 | 50% | ||
damono | 0 | 0 | 100% | ||
speda | 0 | 50,026,049,899 | 25% | ||
shla-rafia | 0 | 2,731,080,747 | 6% | ||
joythewanderer | 0 | 0 | 41% | ||
sergey44 | 0 | 1,534,824,371 | 100% | ||
alexander1 | 0 | 193,025,274 | 100% | ||
jackpot | 0 | 0 | 100% | ||
somena | 0 | 0 | 100% | ||
flashjordan | 0 | 0 | 100% | ||
tonyboney | 0 | 122,891,631 | 100% | ||
rich-oth-hegy | 0 | 0 | 100% | ||
joelerbear | 0 | 718,203,761 | 100% | ||
anomaly | 0 | 15,029,526,601 | 100% | ||
remlaps1 | 0 | 15,893,335,384 | 21% | ||
exposure | 0 | 330,503,577 | 100% | ||
rebeccabe | 0 | 0 | 21% | ||
sward | 0 | 2,301,754,276 | 100% | ||
blhz | 0 | 0 | 1% | ||
ejhaasteem | 0 | 0 | 100% | ||
parallelussr | 0 | 0 | 100% | ||
bring | 0 | 0 | 100% | ||
sthumacher | 0 | 9,569,579,261 | 100% | ||
munaa | 0 | 0 | 100% | ||
way-truth-light | 0 | 5,302,258,832 | 100% | ||
ibklimpak | 0 | 185,713,798 | 100% | ||
gefa | 0 | 0 | 100% | ||
ades | 0 | 0 | 100% | ||
ripperone | 0 | 544,838,704,464 | 13% | ||
rogeer | 0 | 0 | 1% | ||
steemitboard | 0 | 169,638,719 | 1% | ||
lisa.palmer | 0 | 1,512,513,148 | 21% | ||
berkat | 0 | 8,750,692,449 | 100% | ||
analise | 0 | 1,281,338,234 | 100% | ||
oksanasemenova | 0 | 0 | 100% | ||
btu | 0 | 0 | 100% | ||
dekgam | 0 | 215,573,449 | 100% | ||
kkugel2 | 0 | 228,841,531 | 100% | ||
icybc | 0 | 487,751,900 | 100% | ||
galerykoe | 0 | 1,273,747,115 | 100% | ||
syarrf | 0 | 2,827,729,062 | 100% | ||
blackrussian | 0 | 0 | 100% | ||
sokha | 0 | 0 | 100% | ||
jdc | 0 | 0 | 100% | ||
david777111 | 0 | 0 | 100% | ||
thecryptkeeper | 0 | 4,508,531,875 | 100% | ||
longshot | 0 | 1,146,352,340 | 30% | ||
zacharyscottrose | 0 | 6,010,190,313 | 100% | ||
lunix | 0 | 7,759,923,808 | 100% | ||
andyjaypowell | 0 | 0 | 30% | ||
manuel78 | 0 | 326,356,842 | 3% | ||
dralex | 0 | 7,337,712,701 | 100% | ||
danish1980 | 0 | 0 | 100% | ||
mazar | 0 | 6,297,312,941 | 50% | ||
captinevil | 0 | 0 | 100% | ||
joha09sohi | 0 | 3,809,033,672 | 100% | ||
ibrahimmurtaza | 0 | 0 | 100% | ||
srkattel | 0 | 549,596,658 | 100% | ||
solarparadise | 0 | 2,202,698,389 | 100% | ||
robotjini | 0 | 8,459,887,495 | 100% | ||
ponnibong | 0 | 3,002,824,872 | 100% | ||
dizzlemon | 0 | 0 | 100% | ||
mazidoank | 0 | 2,011,964,252 | 100% | ||
kristjannacaj | 0 | 0 | 100% | ||
tayyab1234 | 0 | 226,260,737 | 100% | ||
limbodrones | 0 | 0 | 100% | ||
kuldeepkaul | 0 | 127,001,600 | 100% | ||
voronchihin | 0 | 1,991,488,782 | 9% | ||
evie5el | 0 | 0 | 100% | ||
iamhaque | 0 | 3,921,822,789 | 100% | ||
mudcat36 | 0 | 1,154,457,384 | 100% | ||
kramarenko | 0 | 63,694,572 | 100% | ||
green07 | 0 | 3,842,494,482 | 100% | ||
wethesheeple1776 | 0 | 2,261,519,552 | 100% | ||
duckmast3r | 0 | 1,625,020,997 | 3.18% | ||
taliakerch | 0 | 0 | 100% | ||
atafauzan79 | 0 | 5,997,549,170 | 100% | ||
swedishdragon | 0 | 2,646,589,391 | 100% | ||
digitalis | 0 | 11,935,342,312 | 100% | ||
aravindows | 0 | 0 | 100% | ||
beatseb | 0 | 1,451,522,941 | 100% | ||
hooo | 0 | 0 | 100% | ||
parmodbansal | 0 | 0 | 100% | ||
boucaron | 0 | 1,238,895,626 | 100% | ||
grandslam | 0 | 0 | 100% | ||
pastbastard | 0 | 3,777,271,350 | 100% | ||
minnowpond | 0 | 2,883,738,745 | 1% | ||
kaminchan | 0 | 3,342,137,717 | 100% | ||
lizzyb | 0 | 1,769,871,667 | 100% | ||
dmcamera | 0 | 1,869,834,542 | 100% | ||
bcmc | 0 | 0 | 100% | ||
rpettigrew | 0 | 0 | 100% | ||
mountrock | 0 | 11,388,642,491 | 100% | ||
ririn | 0 | 1,021,156,998 | 100% | ||
promoted | 0 | 28,321,684,781 | 0.5% | ||
mikolla | 0 | 0 | 100% | ||
woolgom | 0 | 501,522,698 | 1% | ||
crazy-daisy | 0 | 976,385,888 | 100% | ||
nadj | 0 | 0 | 100% | ||
twigg | 0 | 17,229,050,152 | 100% | ||
jmv93 | 0 | 0 | 100% | ||
bogosav | 0 | 0 | 100% | ||
geneeverett | 0 | 24,788,063,277 | 81% | ||
tuckerjeanneddd | 0 | 0 | 100% | ||
wordsmith777 | 0 | 2,209,276,379 | 100% | ||
salman.craf | 0 | 603,722,996 | 100% | ||
murdanialthaf | 0 | 0 | 100% | ||
bosveldtzaneen | 0 | 0 | 100% | ||
chnadrakant111 | 0 | 0 | 100% | ||
zhasmin | 0 | 5,979,359,046 | 20% | ||
aek081969 | 0 | 577,684,294 | 100% | ||
lukesilver | 0 | 0 | 100% | ||
ahlawat | 0 | 1,274,214,228 | 100% | ||
duekie | 0 | 0 | 100% | ||
rmaxhuni | 0 | 0 | 100% | ||
arifulsms | 0 | 1,766,975,997 | 100% | ||
bennaceur | 0 | 565,713,517 | 100% | ||
malakah | 0 | 561,871,389 | 100% | ||
moersal | 0 | 479,650,872 | 100% | ||
ilvstranger | 0 | 731,168,365 | 100% | ||
mudatnad | 0 | 0 | 100% | ||
sadique | 0 | 768,411,408 | 100% | ||
jaca | 0 | 88,910,525 | 100% | ||
nazarul | 0 | 203,888,000 | 100% | ||
bescouted | 0 | 0 | 20% | ||
saidhansali | 0 | 878,742,995 | 100% | ||
agusrianda | 0 | 1,616,725,280 | 100% | ||
attilaloe | 0 | 1,532,714,095 | 100% | ||
artmonkey | 0 | 0 | 100% | ||
cook-it-up | 0 | 742,224,005 | 100% | ||
mirainikki | 0 | 0 | 100% | ||
budifatria | 0 | 0 | 100% | ||
muhammadiqbhal | 0 | 0 | 100% | ||
ridwant | 0 | 728,392,124 | 100% | ||
danzy | 0 | 957,751,975 | 100% | ||
alkhalid | 0 | 0 | 100% | ||
cryptowarrior88 | 0 | 0 | 0% | ||
mikeflow | 0 | 0 | 100% | ||
ronnie1 | 0 | 0 | 100% | ||
roshanlal2017 | 0 | 0 | 100% | ||
huiosrealtors | 0 | 834,180,688 | 100% | ||
atli | 0 | 0 | -100% | ||
sunainamalik | 0 | 150,258,800 | 100% | ||
elrull10 | 0 | 1,148,851,588 | 100% | ||
moneykim | 0 | 0 | 100% | ||
kepaxa | 0 | 1,828,172,590 | 100% | ||
fthi | 0 | 1,161,020,448 | 100% | ||
agneslaczo | 0 | 2,177,916,475 | 100% | ||
sakurahana | 0 | 0 | 100% | ||
markjason | 0 | 407,728,434 | 100% | ||
kokoliso | 0 | 0 | 100% | ||
mrnastykilla | 0 | 54,742,231 | 100% | ||
luxurymaniac | 0 | 0 | 100% | ||
skreza | 0 | 510,655,177 | 100% | ||
drawingmaster | 0 | 0 | 100% | ||
juwel17 | 0 | 1,403,212,563 | 100% | ||
nazareth | 0 | 1,380,662,415 | 100% | ||
iamchristopher | 0 | 0 | 100% | ||
amarvaran | 0 | 959,747,966 | 100% | ||
djlongw01 | 0 | 0 | 100% | ||
voltronluis | 0 | 0 | 100% | ||
mikebluehair42 | 0 | 1,630,402,158 | 100% | ||
bassie | 0 | 0 | 100% | ||
juny21c | 0 | 1,133,632,455 | 100% | ||
primetimesports | 0 | 127,634,395 | 0.02% | ||
arquiatra | 0 | 0 | 100% | ||
chamudiliyanage | 0 | 1,705,394,978 | 100% | ||
ahsanhabib | 0 | 349,205,193 | 100% | ||
enigmatic | 0 | 0 | 100% | ||
raheelkhan1 | 0 | 0 | 100% | ||
ryoplasmic | 0 | 1,368,544,453 | 100% | ||
henrylo | 0 | 1,160,634,743 | 100% | ||
madhushiva | 0 | 0 | 100% | ||
beatriceoki | 0 | 0 | 100% | ||
arm2000 | 0 | 0 | 100% | ||
bahadd12 | 0 | 634,633,685 | 100% | ||
moelflow | 0 | 2,466,714,087 | 100% | ||
isbrai | 0 | 0 | 0% | ||
super-grand-ad | 0 | 0 | 100% | ||
gameofmeme | 0 | 1,168,149,657 | 100% | ||
alliahjoy | 0 | 1,122,356,655 | 100% | ||
abix | 0 | 0 | 100% | ||
kicktheword | 0 | 0 | 100% | ||
spawn09 | 0 | 4,416,816,066 | 100% | ||
renaldi | 0 | 0 | 100% | ||
seajai | 0 | 2,324,858,931 | 10% | ||
hakimcityyez | 0 | 0 | 100% | ||
qaismx | 0 | 0 | 100% | ||
helex | 0 | 0 | 100% | ||
solodadlikeaboss | 0 | 0 | 100% | ||
jaichai | 0 | 0 | 100% | ||
hitostone | 0 | 560,256,973 | 100% | ||
xiaoshancun | 0 | 295,157,865 | 100% | ||
xoxois | 0 | 0 | 99.9% | ||
aymenz | 0 | 4,173,841,051 | 100% | ||
calitoo | 0 | 0 | 100% | ||
nilufer | 0 | 903,441,118 | 100% | ||
jmvaron0 | 0 | 0 | 100% | ||
hawk3y3s | 0 | 0 | 100% | ||
loleli29 | 0 | 0 | 100% | ||
abdel-ali | 0 | 555,797,571 | 100% | ||
wurstcase | 0 | 876,332,674 | 100% | ||
xccalvinx | 0 | 905,285,865 | 100% | ||
rabanheidr | 0 | 816,677,395 | 100% | ||
cryptofinance | 0 | 1,158,225,980 | 100% | ||
willow1114 | 0 | 1,440,842,159 | 100% | ||
steemfuad | 0 | 0 | 100% | ||
timhabc | 0 | 23,614,825,134 | 100% | ||
amanardis | 0 | 0 | 100% | ||
denk-mit | 0 | 8,089,436,834 | 100% | ||
azria | 0 | 0 | 100% | ||
rollsman | 0 | 0 | 100% | ||
hrlm | 0 | 673,183,543 | 100% | ||
cryptospeaker | 0 | 0 | 100% | ||
elberteduardo | 0 | 0 | 100% | ||
peterveronika | 0 | 0 | 100% | ||
russdaren | 0 | 0 | 100% | ||
cryptonauta | 0 | 1,108,081,568 | 100% | ||
rizzo9 | 0 | 0 | 100% | ||
bdk1970 | 0 | 0 | 100% | ||
beny | 0 | 1,194,421,909 | 100% | ||
arcaperez | 0 | 998,129,233 | 100% | ||
chanmaly | 0 | 0 | 100% | ||
syafrizal | 0 | 0 | 100% | ||
randomspirit | 0 | 0 | 100% | ||
homerus | 0 | 611,237,929 | 100% | ||
monti2604 | 0 | 0 | 100% | ||
bobbytr | 0 | 986,520,473 | 100% | ||
tamires | 0 | 0 | 100% | ||
messwir | 0 | 0 | 100% | ||
greecemakc | 0 | 1,167,982,816 | 100% | ||
linkboltus | 0 | 0 | 100% | ||
alandefong | 0 | 0 | 100% | ||
angel35mm | 0 | 668,404,437 | 100% | ||
kyawmoe | 0 | 0 | 100% | ||
goldendoll33 | 0 | 121,868,372 | 100% | ||
zugart | 0 | 0 | 100% | ||
nilceauris | 0 | 0 | 100% | ||
idabble | 0 | 53,070,754 | 100% | ||
ipolatjeh1988 | 0 | 0 | 100% | ||
as-i-see-it | 0 | 258,818,184 | 100% | ||
fairyanneschoice | 0 | 1,160,608,494 | 100% | ||
singx | 0 | 1,143,199,320 | 100% | ||
andyartland | 0 | 1,163,687,827 | 100% | ||
riponsk | 0 | 0 | 100% | ||
planetauto | 0 | 0 | 100% | ||
ddccdd | 0 | 97,649,298 | 20.13% | ||
maee | 0 | 0 | 100% | ||
rahulsharmaitm | 0 | 0 | 100% | ||
falakodele | 0 | 1,425,870,978 | 100% | ||
hrovat66 | 0 | 726,651,636 | 100% | ||
kanstruktor | 0 | 0 | 100% | ||
jacoblayan | 0 | 0 | 100% | ||
leebyungdae21 | 0 | 1,079,363,867 | 100% | ||
navala | 0 | 0 | 100% | ||
omerabdalla | 0 | 290,717,887 | 100% | ||
theree2389 | 0 | 0 | 100% | ||
eyduzukunft | 0 | 978,013,364 | 100% | ||
moos | 0 | 1,232,679,004 | 100% | ||
sunsetprime | 0 | 0 | 100% | ||
tispitypop | 0 | 1,143,196,459 | 100% | ||
kaleem345 | 0 | 678,954,216 | 100% | ||
cmn | 0 | 0 | 100% | ||
tanix | 0 | 1,137,089,817 | 100% | ||
reyarobo | 0 | 655,741,726 | 100% | ||
kaliju | 0 | 0 | 100% | ||
jjam | 0 | 1,102,026,657 | 100% | ||
caroabiel | 0 | 0 | 100% | ||
apricoet | 0 | 855,411,513 | 100% | ||
farhan532 | 0 | 0 | 100% | ||
zulfan88 | 0 | 0 | 100% | ||
atifkhan | 0 | 191,641,918 | 100% | ||
jokir | 0 | 268,966,575 | 100% | ||
vetal | 0 | 127,666,131 | 100% | ||
nadyaceh | 0 | 0 | 100% | ||
evermelgar027 | 0 | 1,119,979,728 | 100% | ||
john-unasa | 0 | 0 | 100% | ||
takes2soft | 0 | 1,149,035,188 | 100% | ||
mhdriza | 0 | 0 | 100% | ||
cptnduras | 0 | 835,631,829 | 100% | ||
azadalimia | 0 | 0 | 100% | ||
kryptonasteem | 0 | 824,025,255 | 100% | ||
rawdawg | 0 | 0 | 100% | ||
bsloba | 0 | 217,885,572 | 100% | ||
musicteraphy | 0 | 0 | 100% | ||
zalfa | 0 | 0 | 100% | ||
jezmacher | 0 | 0 | 100% | ||
aravinka | 0 | 1,143,189,631 | 100% | ||
jimfinaltest | 0 | 864,645,937 | 100% | ||
zaupelmann | 0 | 1,005,653,095 | 100% | ||
faisalamin | 0 | 0 | 100% | ||
bekky | 0 | 568,266,443 | 100% | ||
ajibsingh | 0 | 0 | 100% | ||
hakan001 | 0 | 992,310,296 | 100% | ||
alkmaar | 0 | 1,032,931,078 | 100% | ||
kanchana | 0 | 58,029,833 | 100% | ||
bittertruth76 | 0 | 557,086,276 | 100% | ||
bestssnahid | 0 | 673,145,828 | 100% | ||
midobashamido | 0 | 1,056,142,366 | 100% | ||
carlos84 | 0 | 1,044,536,269 | 100% | ||
altibucaq | 0 | 0 | 100% | ||
dash7 | 0 | 481,647,265 | 100% | ||
rashidsahi | 0 | 1,032,930,279 | 100% | ||
hasim5164 | 0 | 0 | 100% | ||
ashish738386 | 0 | 92,847,664 | 100% | ||
boombam | 0 | 0 | 100% | ||
muni | 0 | 1,100,498,514 | 100% | ||
yadhnesh | 0 | 0 | 100% | ||
amartyasen | 0 | 0 | 100% | ||
himapan | 0 | 0 | 100% | ||
tnydmr | 0 | 568,752,429 | 100% | ||
ajaytiwari | 0 | 400,405,514 | 100% | ||
mahimeena | 0 | 332,975,906 | 100% | ||
antor | 0 | 446,829,307 | 100% | ||
bestehemon | 0 | 0 | 100% | ||
bulipaptich420 | 0 | 0 | 100% | ||
shamim2100 | 0 | 667,555,062 | 100% | ||
nimik | 0 | 441,025,703 | 100% | ||
amjad11 | 0 | 653,852,125 | 100% | ||
wisdombtc | 0 | 974,898,535 | 100% | ||
mhdfauzi | 0 | 1,085,154,887 | 100% | ||
nahid197 | 0 | 0 | 100% | ||
asadpiracha | 0 | 0 | 100% | ||
wildflowersite | 0 | 0 | 100% | ||
robinuddin | 0 | 1,032,927,956 | 100% | ||
ruah | 0 | 69,635,590 | 100% | ||
sourovafrin | 0 | 1,119,972,397 | 100% | ||
ah-2002 | 0 | 87,044,486 | 100% | ||
charlessteemit | 0 | 568,690,614 | 100% | ||
sawwatch101 | 0 | 510,660,958 | 100% | ||
ashish2096101 | 0 | 591,902,471 | 100% | ||
mahmoodhassan | 0 | 441,025,366 | 100% | ||
mickzzz | 0 | 232,118,579 | 100% | ||
pieronos | 0 | 0 | 100% | ||
bromedya | 0 | 1,032,927,436 | 100% | ||
shabana1234 | 0 | 0 | 100% | ||
ujwani | 0 | 0 | 100% | ||
waleed12345 | 0 | 0 | 100% | ||
devosdevosi | 0 | 0 | 100% | ||
aoeu | 0 | 290,148,106 | 100% | ||
carlossoublette | 0 | 0 | 100% | ||
valenziia | 0 | 0 | 100% | ||
priya1998 | 0 | 678,946,543 | 100% | ||
bitcoincompany | 0 | 0 | 100% | ||
shreyasgune | 0 | 26,959,997,580 | 100% | ||
shakirullah.udda | 0 | 812,414,292 | 100% | ||
potorciprian | 0 | 1,160,591,677 | 100% | ||
entertain-me | 0 | 1,032,926,474 | 100% | ||
amirkhan1 | 0 | 412,009,956 | 100% | ||
aponvhuiya | 0 | 0 | 100% | ||
emraan361 | 0 | 133,467,999 | 100% | ||
yunmin | 0 | 0 | 100% | ||
clickme09 | 0 | 1,119,970,586 | 100% | ||
rohitgiri | 0 | 412,009,901 | 100% | ||
mdgazi | 0 | 0 | 100% | ||
thesilentranter | 0 | 0 | 100% | ||
amulla505 | 0 | 0 | 100% | ||
salamsafar | 0 | 899,457,917 | 100% | ||
camal12 | 0 | 1,032,925,831 | 100% | ||
zaheer2710 | 0 | 127,664,970 | 100% | ||
sajib7 | 0 | 104,453,156 | 100% | ||
muksinnaga | 0 | 0 | 100% | ||
mohamedzyaad | 0 | 330,768,155 | 100% | ||
mdjohurulislam | 0 | 168,285,518 | 100% | ||
roumaissa | 0 | 1,148,983,405 | 100% | ||
mrtoto | 0 | 1,160,588,856 | 100% | ||
divasafitri | 0 | 1,119,967,199 | 100% | ||
mahmudulhaque | 0 | 0 | 100% | ||
steemit-tr | 0 | 0 | 100% | ||
puneetsuthar | 0 | 597,701,814 | 100% | ||
redeauxtech | 0 | 156,679,116 | 100% | ||
leocrypt | 0 | 0 | 100% | ||
urbansteemers | 0 | 572,518,910 | 100% | ||
asif514 | 0 | 0 | 100% | ||
rumaraj | 0 | 0 | 100% | ||
junaid2 | 0 | 0 | 100% | ||
dlal0522802 | 0 | 0 | 100% | ||
buddhikaprabath | 0 | 52,226,353 | 100% | ||
abulhasanat | 0 | 812,409,926 | 100% | ||
ak2813 | 0 | 0 | 100% | ||
eonwarped | 0 | 0 | 100% | ||
shakil205025 | 0 | 0 | 100% | ||
mozid | 0 | 0 | 100% | ||
riazalalvi | 0 | 0 | 100% | ||
zeynepnisa | 0 | 0 | 100% | ||
ted.bear | 0 | 1,160,585,361 | 100% | ||
abunajwa | 0 | 0 | 100% | ||
sardarmani | 0 | 0 | 100% | ||
dexolmoguis | 0 | 0 | 100% | ||
hp895105 | 0 | 0 | 100% | ||
allmix | 0 | 0 | 100% | ||
carlfoutley | 0 | 980,694,230 | 100% | ||
estv | 0 | 0 | 100% | ||
doctorahmed | 0 | 951,679,580 | 100% | ||
herderyer | 0 | 0 | 100% | ||
abdelilahaanbar | 0 | 0 | 100% | ||
ganeshsahu | 0 | 620,912,859 | 100% | ||
pakram | 0 | 841,423,933 | 100% | ||
ssst | 0 | 0 | 100% | ||
hmjamil94 | 0 | 0 | 100% | ||
azhar11 | 0 | 295,949,089 | 100% | ||
anak01 | 0 | 0 | 100% | ||
sherin | 0 | 0 | 100% | ||
tanvirsadatripon | 0 | 0 | 100% | ||
bapin | 0 | 0 | 100% | ||
mawan1002 | 0 | 0 | 100% | ||
hasanuzzaman | 0 | 0 | 50.53% | ||
sabbir62 | 0 | 0 | 100% | ||
vipins | 0 | 0 | 100% | ||
surajit788 | 0 | 0 | 100% | ||
faces | 0 | 0 | 1% | ||
yazendahabreh | 0 | 0 | 100% | ||
muhammadazam | 0 | 0 | 100% | ||
swastik | 0 | 0 | 100% | ||
mabhedal | 0 | 0 | 100% | ||
matthewhalder | 0 | 0 | 100% | ||
goldcerebrum | 0 | 0 | 100% | ||
zahidulislam | 0 | 0 | 100% | ||
john986 | 0 | 0 | 100% | ||
zk34915 | 0 | 0 | 100% | ||
blgc47 | 0 | 0 | 100% | ||
okkiverdi | 0 | 0 | 100% | ||
mariajose | 0 | 0 | 100% | ||
abdulhaque | 0 | 0 | 100% | ||
yusuf781 | 0 | 0 | 100% | ||
nahid05 | 0 | 0 | 100% | ||
mibraheem | 0 | 0 | 100% | ||
anikaa | 0 | 0 | 100% | ||
fabijanac | 0 | 0 | 100% | ||
rafiullah | 0 | 0 | 100% | ||
baksi | 0 | 0 | 100% | ||
ahmadparvez221 | 0 | 0 | 100% | ||
saydur | 0 | 0 | 100% | ||
adir27 | 0 | 0 | 100% | ||
bobinson | 0 | 0 | 100% | ||
ai-crypto-tech | 0 | 0 | 100% | ||
techpaaji | 0 | 0 | 100% | ||
amraaz | 0 | 0 | 100% | ||
muksihs | 0 | 0 | 100% | ||
xcntrc | 0 | 0 | 100% | ||
helal420 | 0 | 0 | 100% | ||
kramat23 | 0 | 0 | 100% | ||
mdmusa | 0 | 0 | 100% | ||
kalter005 | 0 | 0 | 100% | ||
funworld | 0 | 0 | 100% | ||
tanveer112 | 0 | 0 | 100% | ||
mishakil | 0 | 0 | 100% | ||
schambach | 0 | 0 | 100% | ||
riadshahria | 0 | 0 | 100% | ||
khadimul | 0 | 0 | 100% | ||
nischal123 | 0 | 0 | 100% | ||
mdsaimonuddin | 0 | 0 | 100% | ||
josevasquez | 0 | 0 | 100% | ||
hamidul79 | 0 | 0 | 100% | ||
abelinche | 0 | 0 | 100% | ||
ideasrex | 0 | 0 | 100% | ||
fatemasultana | 0 | 0 | 100% | ||
syedsabbir | 0 | 0 | 100% | ||
luvpizaro | 0 | 0 | 100% | ||
maibbbbbbbb | 0 | 0 | 100% | ||
farseer | 0 | 0 | 100% | ||
dugarte | 0 | 0 | 100% | ||
mrwincaste | 0 | 0 | 100% | ||
rimonkst06 | 0 | 0 | 100% | ||
sumantasardar | 0 | 0 | 100% | ||
tufailpampori | 0 | 0 | 100% | ||
chaitanyachaitz | 0 | 0 | 100% | ||
shubham445 | 0 | 0 | 100% | ||
chimelinz | 0 | 0 | 100% | ||
mdrobin | 0 | 0 | 100% | ||
twotripleow | 0 | 0 | 100% | ||
balca | 0 | 0 | 100% | ||
riadayoub | 0 | 0 | 100% | ||
saeed1 | 0 | 0 | 100% | ||
liberta | 0 | 0 | 100% | ||
parthakp | 0 | 0 | 100% | ||
umajeed86 | 0 | 0 | 100% | ||
fukusuke | 0 | 0 | 100% | ||
sayednajatsawab | 0 | 0 | 100% | ||
kanish47 | 0 | 0 | 100% | ||
online.com | 0 | 0 | 100% | ||
ridoykhan22 | 0 | 0 | 100% | ||
haikalbatat | 0 | 0 | 100% | ||
babuahmmed | 0 | 0 | 100% | ||
mobarok | 0 | 0 | 100% | ||
bilaraj | 0 | 0 | 100% | ||
moharkan | 0 | 0 | 100% | ||
checkliberius | 0 | 0 | 100% | ||
ashikrahman | 0 | 0 | 100% | ||
nextt20 | 0 | 0 | 100% | ||
advanced54 | 0 | 0 | 100% | ||
rahulkohli | 0 | 0 | 100% | ||
eskondell | 0 | 0 | 100% | ||
yasirmoharkan | 0 | 0 | 100% | ||
mdrony | 0 | 0 | 100% | ||
suhail17 | 0 | 0 | 100% | ||
remixridoy100 | 0 | 0 | 100% | ||
munarul | 0 | 0 | 100% | ||
dragoni | 0 | 0 | 100% | ||
vikaskaladharan | 0 | 0 | 100% | ||
rk786 | 0 | 0 | 100% | ||
rahmatsuryadi97 | 0 | 0 | 100% | ||
kayyam09 | 0 | 0 | 100% | ||
iskenderbaran | 0 | 0 | 100% | ||
artefficient | 0 | 0 | 100% | ||
dejaneskimo | 0 | 0 | 100% | ||
karanjain | 0 | 0 | 100% | ||
fakhrurradhi | 0 | 0 | 90.75% | ||
gokcehan61 | 0 | 0 | 100% | ||
serenoblues | 0 | 0 | 100% | ||
raj1511 | 0 | 0 | 10% | ||
nirobsagor | 0 | 0 | 100% | ||
kakon | 0 | 0 | 100% | ||
shivamsingh | 0 | 0 | 100% | ||
bmstyle | 0 | 0 | 100% | ||
latestnews | 0 | 0 | 100% | ||
khurshid | 0 | 0 | 0% | ||
saleh9 | 0 | 0 | 100% | ||
ijal | 0 | 0 | 100% | ||
khanrony | 0 | 0 | 100% | ||
tommygamerr | 0 | 0 | 100% | ||
dengised | 0 | 0 | 100% | ||
kharazimudi | 0 | 0 | 100% | ||
simppov | 0 | 0 | 100% | ||
feriyanto | 0 | 0 | 100% | ||
vivekanand8 | 0 | 0 | 100% | ||
sentechnical | 0 | 0 | 100% | ||
umer012001 | 0 | 0 | 100% | ||
mdirfanarju | 0 | 0 | 100% | ||
staranger | 0 | 0 | 100% | ||
pranav72 | 0 | 0 | 100% | ||
punleu81 | 0 | 0 | 100% | ||
f592084847 | 0 | 0 | 100% | ||
zublizainordin | 0 | 0 | 100% | ||
vikassodiviews | 0 | 0 | 100% | ||
donvito471 | 0 | 0 | 100% | ||
santhoshreddy | 0 | 0 | 100% | ||
maartysiiaa | 0 | 0 | 100% | ||
sumahn278 | 0 | 0 | 100% | ||
manikanta591 | 0 | 0 | 100% | ||
mindfreezer | 0 | 0 | 100% | ||
iwant | 0 | 0 | 100% | ||
navneet123 | 0 | 0 | 100% | ||
fsmamun | 0 | 0 | 100% | ||
sateeshkalyan | 0 | 0 | 100% | ||
maadmaxxxx | 0 | 0 | 100% | ||
capetcha | 0 | 0 | 100% | ||
arif2112 | 0 | 0 | 100% | ||
arslanq | 0 | 0 | 100% | ||
nasse | 0 | 0 | 100% | ||
kohbohgong | 0 | 0 | 100% | ||
kr-nahid | 0 | 0 | 100% | ||
steeplife | 0 | 0 | 100% | ||
ak47balasbolin | 0 | 0 | 100% | ||
sonampatel | 0 | 0 | 100% | ||
farjanayesmina | 0 | 0 | 100% | ||
mashla | 0 | 0 | 100% | ||
sayemahmed | 0 | 0 | 100% | ||
evgen1981 | 0 | 0 | 100% | ||
udayakumarage | 0 | 0 | 100% | ||
noolivaralakshmi | 0 | 0 | 100% | ||
myperspectives | 0 | 0 | 100% | ||
elex17 | 0 | 0 | 100% | ||
basirghaus | 0 | 0 | 100% | ||
mofassal | 0 | 0 | 100% | ||
rajudas36 | 0 | 0 | 100% | ||
hafijullslam307 | 0 | 0 | 100% | ||
shamunnabi | 0 | 0 | 100% | ||
ysma | 0 | 0 | 100% | ||
boss7862 | 0 | 0 | 100% | ||
steemitbit | 0 | 0 | 100% | ||
saafir | 0 | 0 | 100% | ||
mdsujon335 | 0 | 0 | 100% | ||
hasan086 | 0 | 0 | 100% | ||
marufislamrabby | 0 | 0 | 100% | ||
abbiekhan | 0 | 0 | 100% | ||
shubrodyuti | 0 | 0 | 100% | ||
riskisteemit | 0 | 0 | 100% | ||
abdo00 | 0 | 0 | 100% | ||
enamul1994 | 0 | 0 | 100% | ||
dkabii | 0 | 0 | 100% | ||
iswetnasution67 | 0 | 0 | 100% | ||
textreme | 0 | 0 | 100% | ||
razuhossain | 0 | 0 | 100% | ||
ennourmidie | 0 | 0 | 100% | ||
shamas55055 | 0 | 0 | 100% | ||
hendrapranabal | 0 | 0 | 100% | ||
belguelssa | 0 | 0 | 100% | ||
blushinggirl | 0 | 0 | 100% | ||
abda | 0 | 0 | 100% | ||
foureagles | 0 | 0 | 100% | ||
thawfiqur | 0 | 0 | 100% | ||
hugo276 | 0 | 0 | 100% | ||
ozgeatiksahin | 0 | 0 | 100% | ||
teatimeadda | 0 | 0 | 100% | ||
tomcryptoprofit | 0 | 0 | 100% | ||
mladenpaunovic | 0 | 0 | 100% | ||
ziaurrehman | 0 | 0 | 100% | ||
ryansatterlee | 0 | 0 | 100% | ||
koushiksteemit | 0 | 0 | 100% | ||
g12 | 0 | 0 | 100% | ||
masrawy | 0 | 0 | -100% | ||
billibong | 0 | 0 | 100% | ||
burdani97 | 0 | 0 | 100% | ||
wisecoot | 0 | 0 | 100% | ||
auronshaqiri | 0 | 0 | 100% | ||
darkus | 0 | 0 | 100% | ||
musliwadi | 0 | 0 | 100% | ||
lollobrown | 0 | 0 | 100% | ||
nannou | 0 | 0 | 100% | ||
agcaapo | 0 | 0 | 100% | ||
baudilio | 0 | 0 | 100% | ||
prettyursula | 0 | 0 | 100% | ||
saint5 | 0 | 0 | 100% | ||
horlly | 0 | 0 | 100% | ||
juanddios | 0 | 0 | 100% | ||
whizkid | 0 | 0 | 100% | ||
midiagam | 0 | 0 | 100% | ||
letqv13 | 0 | 0 | 100% | ||
jyotiparkash | 0 | 0 | 100% | ||
greentoch | 0 | 0 | 100% | ||
asriat | 0 | 0 | 100% | ||
emmanuelmitti | 0 | 0 | 100% | ||
andrea97 | 0 | 0 | 100% | ||
depritv | 0 | 0 | 100% | ||
claudiusorin13 | 0 | 0 | 100% | ||
gmreza | 0 | 0 | 100% | ||
theeltuyo | 0 | 0 | 100% | ||
dedek-jhib | 0 | 0 | 100% | ||
successmindset | 0 | 0 | 100% | ||
adnansyahir | 0 | 0 | 100% | ||
bitcrack | 0 | 0 | 100% | ||
muzahit | 0 | 0 | 100% | ||
sannyputra | 0 | 0 | 100% | ||
armiya | 0 | 0 | 100% | ||
alphasteem | 0 | 0 | 100% | ||
princepr | 0 | 0 | 100% | ||
mukta9988 | 0 | 0 | 100% | ||
goodc | 0 | 0 | 100% | ||
diansiddiq | 0 | 0 | 100% | ||
sophiac | 0 | 0 | 100% | ||
ksseono | 0 | 0 | 100% | ||
hoffmann | 0 | 0 | 100% | ||
cryptobigbang | 0 | 0 | 100% | ||
blue-dragon | 0 | 0 | 100% | ||
sanzo0622 | 0 | 0 | 100% | ||
bonsaiaustin | 0 | 0 | 100% | ||
daihatsu | 0 | 0 | 100% | ||
rjqr2203 | 0 | 0 | 100% | ||
syahrul99 | 0 | 0 | 100% | ||
news2u | 0 | 0 | 100% | ||
junaidiabdya | 0 | 0 | 100% | ||
mitch0403 | 0 | 0 | 100% | ||
marilin151 | 0 | 0 | 100% | ||
nefaurrahman | 0 | 0 | 100% | ||
kryptokajun | 0 | 0 | 100% | ||
habib12 | 0 | 0 | 100% | ||
cosmophobia | 0 | 0 | 100% | ||
yermoo | 0 | 0 | 100% | ||
pijast115 | 0 | 0 | 100% | ||
staceyjulyan | 0 | 0 | 100% | ||
sadiajahan22 | 0 | 0 | 100% | ||
abducted | 0 | 0 | 100% | ||
teknomunk | 0 | 0 | 100% | ||
dromihete | 0 | 0 | 100% | ||
travelhippo | 0 | 0 | 100% |
Very useful ,, thanks his information
author | abieikram |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t080806602z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-09-28 08:08:18 |
last_update | 2017-09-28 08:08:18 |
depth | 1 |
children | 0 |
last_payout | 2017-10-05 08:08:18 |
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 | 37 |
author_reputation | 1,756,905,931,962 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,159,662 |
net_rshares | 0 |
Wonderful post!! The photo and explanations were wonderful ,Cool !!
author | aek081969 |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t220026635z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-09-28 22:00:09 |
last_update | 2017-09-28 22:00:09 |
depth | 1 |
children | 0 |
last_payout | 2017-10-05 22:00: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 | 67 |
author_reputation | 1,254,205,740,033 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,220,776 |
net_rshares | 0 |
great content! anomaly
author | ahlawat |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t064710510z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-09-28 06:47:12 |
last_update | 2017-09-28 06:47:12 |
depth | 1 |
children | 0 |
last_payout | 2017-10-05 06:47:12 |
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 | 22 |
author_reputation | 48,755,975,904,528 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,154,926 |
net_rshares | 0 |
WOW very good
author | ak2813 |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171007t145925861z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-07 14:59:30 |
last_update | 2017-10-07 14:59:30 |
depth | 1 |
children | 0 |
last_payout | 2017-10-14 14:59: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 | 14 |
author_reputation | 324,875,286 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,016,506 |
net_rshares | 0 |
Very good post
author | amjad11 |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171003t145131594z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-03 02:51:36 |
last_update | 2017-10-03 02:51:36 |
depth | 1 |
children | 1 |
last_payout | 2017-10-10 02:51:36 |
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 | 14 |
author_reputation | 1,632,592,170,465 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,625,489 |
net_rshares | 0 |
Follow me @amjad11 & Upvote me Thanks
author | amjad11 |
---|---|
permlink | re-amjad11-re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171003t145202112z |
category | technology |
json_metadata | {"tags":["technology"],"users":["amjad11"],"app":"steemit/0.1"} |
created | 2017-10-03 02:52:06 |
last_update | 2017-10-03 02:52:39 |
depth | 2 |
children | 0 |
last_payout | 2017-10-10 02:52:06 |
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 | 37 |
author_reputation | 1,632,592,170,465 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,625,511 |
net_rshares | 0 |
Thanks for this!
author | angel35mm |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t114643565z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-09-28 11:46:42 |
last_update | 2017-09-28 11:46:42 |
depth | 1 |
children | 0 |
last_payout | 2017-10-05 11:46:42 |
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 | 16 |
author_reputation | 176,823,343,706,345 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,174,190 |
net_rshares | 0 |
Congratulations. this publication is very interesting and educational, Thank you for sharing it.
author | arquiatra |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171007t173828097z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-07 17:38:33 |
last_update | 2017-10-07 17:38:33 |
depth | 1 |
children | 0 |
last_payout | 2017-10-14 17:38:33 |
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 | 1,516,369,972,640 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,030,550 |
net_rshares | 0 |
Upvoted! Gotta admit that I don't have a clue as to how to actually work it, but it sounds really interesting. :-) I guess I should surf it out on youtube? I'm sure you did a great job of explaining it here, but since it's so completely new to me it's like a foreign language. :-)
author | as-i-see-it |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171003t011007205z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-03 01:10:00 |
last_update | 2017-10-03 01:10:00 |
depth | 1 |
children | 0 |
last_payout | 2017-10-10 01:10: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 | 281 |
author_reputation | 2,505,286,236,282 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,619,568 |
net_rshares | 0 |
very nice
author | ashikrahman |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171014t101635332z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-14 10:21:09 |
last_update | 2017-10-14 10:21:09 |
depth | 1 |
children | 0 |
last_payout | 2017-10-21 10:21: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 | 9 |
author_reputation | 9,316,585,780 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,655,566 |
net_rshares | 0 |
Anyone can give me steem power
author | azhar11 |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171008t012936899z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-08 01:29:42 |
last_update | 2017-10-08 01:29:42 |
depth | 1 |
children | 0 |
last_payout | 2017-10-15 01:29:42 |
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 | 30 |
author_reputation | -4,303,265,735 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,058,425 |
net_rshares | 0 |
Amazing article, amazing technology. Since i am nor an engineer myself, i have instantly shared this article with them. Than you for this post!
author | bescouted |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171008t091309879z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-08 09:13:09 |
last_update | 2017-10-08 09:13:09 |
depth | 1 |
children | 0 |
last_payout | 2017-10-15 09:13: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 | 143 |
author_reputation | 118,309,258,668,927 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,085,056 |
net_rshares | 0 |
Great information!
author | bestssnahid |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t075745205z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-09-28 07:57:54 |
last_update | 2017-09-28 07:57:54 |
depth | 1 |
children | 0 |
last_payout | 2017-10-05 07:57:54 |
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 | 18 |
author_reputation | -6,222,909,947 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,158,978 |
net_rshares | 0 |
hy friend
author | bigtrue |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171014t094919577z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-14 09:49:21 |
last_update | 2017-10-14 09:49:21 |
depth | 1 |
children | 0 |
last_payout | 2017-10-21 09:49: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 | 9 |
author_reputation | 1,667,930,722 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,653,662 |
net_rshares | 0 |
This is some FS. Never heard about this in my 18+ years of existences in the UNIX universe!
author | bobinson |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171017t045656110z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-17 04:56:57 |
last_update | 2017-10-17 04:56:57 |
depth | 1 |
children | 0 |
last_payout | 2017-10-24 04:56: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 | 91 |
author_reputation | 55,343,141,313,811 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,875,100 |
net_rshares | 0 |
I believe the alt coin Ark will implement this in a future release, interesting concept and hopefully we can see more about this.
author | bonsaiaustin |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20180208t035755476z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2018-02-08 03:57:54 |
last_update | 2018-02-08 03:57:54 |
depth | 1 |
children | 0 |
last_payout | 2018-02-15 03:57:54 |
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 | 129 |
author_reputation | 37,424,303,187 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,819,401 |
net_rshares | 168,975,382 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bonsaiaustin | 0 | 168,975,382 | 100% |
I love to computer codes :) Best sharing. Thanks. Follow you.
author | bromedya |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t114535220z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-09-28 11:45:36 |
last_update | 2017-09-28 11:45:36 |
depth | 1 |
children | 0 |
last_payout | 2017-10-05 11:45:36 |
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 | 61 |
author_reputation | 269,717,335,532 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,174,129 |
net_rshares | 0 |
Best Shared... I share fun videos every day. Please follow me and like to my videos?
author | bromedya |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171002t135037754z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-02 13:50:42 |
last_update | 2017-10-02 13:50:42 |
depth | 1 |
children | 0 |
last_payout | 2017-10-09 13:50:42 |
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 | 84 |
author_reputation | 269,717,335,532 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,570,597 |
net_rshares | 0 |
Woooooow
author | carlfoutley |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171003t224555680z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-03 22:46:12 |
last_update | 2017-10-03 22:46:12 |
depth | 1 |
children | 0 |
last_payout | 2017-10-10 22:46:12 |
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 | 8 |
author_reputation | 4,148,200,430 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,710,053 |
net_rshares | 0 |
I loved your post, a greeting for you, my brother @anomaly
author | carlossoublette |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171013t165441693z |
category | technology |
json_metadata | {"tags":["technology"],"users":["anomaly"],"app":"steemit/0.1"} |
created | 2017-10-13 16:53:30 |
last_update | 2017-10-13 16:53:30 |
depth | 1 |
children | 0 |
last_payout | 2017-10-20 16: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 | 58 |
author_reputation | 9,212,527,259,386 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,598,991 |
net_rshares | 438,618,480 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
carlossoublette | 0 | 438,618,480 | 100% |
Nice informative post with coding implications!!!
author | cryptofinance |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t225139400z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-09-28 22:51:39 |
last_update | 2017-09-28 22:51:39 |
depth | 1 |
children | 1 |
last_payout | 2017-10-05 22:51: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 | 49 |
author_reputation | 226,300,745,146 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,223,707 |
net_rshares | 1,687,632,910 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptofinance | 0 | 1,176,513,759 | 100% | ||
navala | 0 | 511,119,151 | 100% |
Followed n upvoted . Please follow me .
author | navala |
---|---|
permlink | re-cryptofinance-re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171005t094758947z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-05 09:48:03 |
last_update | 2017-10-05 09:48:03 |
depth | 2 |
children | 0 |
last_payout | 2017-10-12 09:48: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 | 39 |
author_reputation | 254,801,529,717 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,843,568 |
net_rshares | 0 |
Good info nice to know.
author | danzy |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t094224063z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-09-28 09:42:24 |
last_update | 2017-09-28 09:42:24 |
depth | 1 |
children | 0 |
last_payout | 2017-10-05 09:42: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 | 23 |
author_reputation | 5,845,540,007,568 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,165,844 |
net_rshares | 0 |
Nice information
author | dekgam | ||||||
---|---|---|---|---|---|---|---|
permlink | re-anomaly-2017104t122834766z | ||||||
category | technology | ||||||
json_metadata | {"tags":"technology","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-10-04 05:28:36 | ||||||
last_update | 2017-10-04 05:28:36 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-10-11 05:28:36 | ||||||
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 | 16 | ||||||
author_reputation | 74,601,045,038 | ||||||
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 16,731,965 | ||||||
net_rshares | 0 |
Coding has come a long way since I used to code in COBOL. seems like it was a century ago. LOL!
author | dmcamera |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t230025904z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-09-28 23:00:27 |
last_update | 2017-09-28 23:00:27 |
depth | 1 |
children | 0 |
last_payout | 2017-10-05 23:00:27 |
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 | 95 |
author_reputation | 12,678,127,431,922 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,224,257 |
net_rshares | 0 |
Amazing blog my friend....
author | dobartim |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t080735177z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-09-28 08:07:36 |
last_update | 2017-09-28 08:07:36 |
depth | 1 |
children | 0 |
last_payout | 2017-10-05 08:07:36 |
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 | 26 |
author_reputation | 624,612,666,345,342 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,159,615 |
net_rshares | 0 |
nice great pictures
author | enriqueig |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171009t135938711z |
category | technology |
json_metadata | {"tags":["technology"],"app":"busy/1.0.0"} |
created | 2017-10-09 13:59:39 |
last_update | 2017-10-09 13:59:39 |
depth | 1 |
children | 0 |
last_payout | 2017-10-16 13:59: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 | 20 |
author_reputation | 6,884,826,572,914 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,200,963 |
net_rshares | 0 |
wahou. Thx for sharing. I'll try to made my own gateway. I have already a VPS that I use as a steemit gateway (https://steemit.john-at-me.net). I think, it's important to host those gateways in order to decentralize the new "web".
author | evildido |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171013t115801068z |
category | technology |
json_metadata | {"tags":["technology"],"community":"busy","app":"busy/2.0.0"} |
created | 2017-10-13 11:58:00 |
last_update | 2017-10-13 11:58:00 |
depth | 1 |
children | 0 |
last_payout | 2017-10-20 11:58: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 | 231 |
author_reputation | 10,472,899,706,596 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,578,281 |
net_rshares | 0 |
tnx for voting my post...plz help
author | fakharuddin |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171005t025126138z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-05 02:51:33 |
last_update | 2017-10-05 02:51:33 |
depth | 1 |
children | 0 |
last_payout | 2017-10-12 02:51:33 |
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 | 33 |
author_reputation | 6,296,287,338 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,817,948 |
net_rshares | 0 |
We will support each other
author | fthi |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171009t214411249z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-09 21:44:09 |
last_update | 2017-10-09 21:44:09 |
depth | 1 |
children | 0 |
last_payout | 2017-10-16 21:44: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 | 26 |
author_reputation | -25,086,030,538 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,234,975 |
net_rshares | 0 |
awesome post!
author | funworld |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171008t065634995z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-08 06:56:36 |
last_update | 2017-10-08 06:56:36 |
depth | 1 |
children | 0 |
last_payout | 2017-10-15 06:56:36 |
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 | 13 |
author_reputation | 10,811,950,330 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,076,532 |
net_rshares | 0 |
Very nice completion of post! @anomaly
author | gamzeuzun |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t100153120z |
category | technology |
json_metadata | {"tags":["technology"],"users":["anomaly"],"app":"steemit/0.1"} |
created | 2017-09-28 10:01:57 |
last_update | 2017-09-28 10:01:57 |
depth | 1 |
children | 0 |
last_payout | 2017-10-05 10:01: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 | 38 |
author_reputation | 7,627,187,610 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,167,269 |
net_rshares | 0 |
Plz visit once to my page.i hope u like my posts
author | ganeshsahu |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171004t084138307z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-04 08:41:45 |
last_update | 2017-10-04 08:41:45 |
depth | 1 |
children | 0 |
last_payout | 2017-10-11 08:41:45 |
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 | 48 |
author_reputation | 3,374,945,693,393 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,744,142 |
net_rshares | 0 |
wonderful thanks for the information
author | geisha1972 |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171004t035219768z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-04 03:48:03 |
last_update | 2017-10-04 03:48:03 |
depth | 1 |
children | 0 |
last_payout | 2017-10-11 03:48: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 | 36 |
author_reputation | 17,114,795,153 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,726,255 |
net_rshares | 0 |
My own gateway! About time :) Upvoted indeed
author | geneeverett |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t222535982z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-09-28 22:25:36 |
last_update | 2017-09-28 22:25:36 |
depth | 1 |
children | 5 |
last_payout | 2017-10-05 22:25:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.019 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 44 |
author_reputation | 552,222,122,239,984 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,222,180 |
net_rshares | 7,483,188,913 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
geneeverett | 0 | 7,483,188,913 | 24% |
Follow me @amjad11 & Upvote
author | amjad11 |
---|---|
permlink | re-geneeverett-re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171003t145321050z |
category | technology |
json_metadata | {"tags":["technology"],"users":["amjad11"],"app":"steemit/0.1"} |
created | 2017-10-03 02:53:27 |
last_update | 2017-10-03 02:53:27 |
depth | 2 |
children | 3 |
last_payout | 2017-10-10 02:53:27 |
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 | 27 |
author_reputation | 1,632,592,170,465 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,625,587 |
net_rshares | 534,892,135 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
navala | 0 | 534,892,135 | 100% |
Followed n upvoted. Please follow me .
author | navala |
---|---|
permlink | re-amjad11-re-geneeverett-re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171005t094656127z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-05 09:46:57 |
last_update | 2017-10-05 09:46:57 |
depth | 3 |
children | 0 |
last_payout | 2017-10-12 09:46: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 | 38 |
author_reputation | 254,801,529,717 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,843,514 |
net_rshares | 0 |
Hello guys please register through this link i will be very thankful to you please i need referrals and you can also earn big amount you can check but please help me in getting my target of 40 referrals. I need 40 people to register this link please. I will give you referrals in return but please kindly login through this link. http://padyredrgi.loan/5317664160364/
author | tayyab1234 |
---|---|
permlink | re-amjad11-re-geneeverett-re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171004t161627630z |
category | technology |
json_metadata | {"tags":["technology"],"links":["http://padyredrgi.loan/5317664160364/"],"app":"steemit/0.1"} |
created | 2017-10-04 16:16:30 |
last_update | 2017-10-04 16:16:30 |
depth | 3 |
children | 1 |
last_payout | 2017-10-11 16:16: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 | 368 |
author_reputation | -1,659,170,248 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,778,041 |
net_rshares | 523,005,643 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
navala | 0 | 523,005,643 | 100% |
Nice
author | remixridoy100 |
---|---|
permlink | re-geneeverett-re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171015t030126254z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-15 03:01:33 |
last_update | 2017-10-15 03:01:33 |
depth | 2 |
children | 0 |
last_payout | 2017-10-22 03:01:33 |
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 | 4 |
author_reputation | 1,289,493,040 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,714,392 |
net_rshares | 0 |
nice post
author | hamidul79 |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171007t171503153z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-07 17:15:18 |
last_update | 2017-10-07 17:15:18 |
depth | 1 |
children | 0 |
last_payout | 2017-10-14 17:15:18 |
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 | 9 |
author_reputation | 752,855,328 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,028,685 |
net_rshares | 0 |
i follow u and also upvote..so,i think u also same with me...i invite u to come my blog and give me ur important upvote
author | hasanuzzaman | ||||||
---|---|---|---|---|---|---|---|
permlink | re-anomaly-2017108t92517695z | ||||||
category | technology | ||||||
json_metadata | {"tags":"technology","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-10-08 03:25:24 | ||||||
last_update | 2017-10-08 03:25:24 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-10-15 03:25: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 | 119 | ||||||
author_reputation | 40,308,900,758 | ||||||
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 17,064,325 | ||||||
net_rshares | 0 |
vote, comment, follow done...plz back koren
author | helal420 |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171008t011719004z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-08 01:17:21 |
last_update | 2017-10-08 01:17:21 |
depth | 1 |
children | 0 |
last_payout | 2017-10-15 01:17: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 | 43 |
author_reputation | 1,729,868,339 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,057,874 |
net_rshares | 0 |
Thanks for voting.
author | hooo |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171006t214519285z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-06 21:46:21 |
last_update | 2017-10-06 21:46:21 |
depth | 1 |
children | 0 |
last_payout | 2017-10-13 21:46: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 | 18 |
author_reputation | 25,319,253,589,196 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,949,471 |
net_rshares | 0 |
<center></center>
author | humayun-bakshi |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171003t072255321z |
category | technology |
json_metadata | {"tags":["technology"],"image":["https://steemitimages.com/DQmZ5bwKMFTtbpMN2UfEmLh747ryefRZ2pNnWgibePZZcj3/33.jpg"],"app":"steemit/0.1"} |
created | 2017-10-03 07:22:42 |
last_update | 2017-10-03 07:22:42 |
depth | 1 |
children | 0 |
last_payout | 2017-10-10 07:22:42 |
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 | 108 |
author_reputation | 11,460,528,427 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,641,516 |
net_rshares | 0 |
Damn... you got me lost a bit... more here. But i got an idea for a new beginning to.. sharing files if i got it right. I've searched a bit and found about that project started in 2014. Well, i will read about it and what it means. But for a brief info, peers are us with our computers and if there is no network? It is maybe a dumb question, but it is the first time i heard about it... Cheers
author | ilvstranger |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170930t201533064z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-09-30 20:15:33 |
last_update | 2017-09-30 20:15:33 |
depth | 1 |
children | 0 |
last_payout | 2017-10-07 20:15:33 |
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 | 400 |
author_reputation | 858,475,632,832 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,408,536 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
paulmoon410 | 0 | 0 | 100% |
Thanks for sharing @anomaly
author | jacoblayan |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171009t015522872z |
category | technology |
json_metadata | {"tags":["technology"],"users":["anomaly"],"app":"steemit/0.1"} |
created | 2017-10-09 01:55:27 |
last_update | 2017-10-09 01:55:27 |
depth | 1 |
children | 0 |
last_payout | 2017-10-16 01:55:27 |
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 | 27 |
author_reputation | 7,430,767,069,565 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,154,145 |
net_rshares | 0 |
thanks for always supporting my work
author | jezmacher |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171010t171416160z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-10 17:14:45 |
last_update | 2017-10-10 17:14:45 |
depth | 1 |
children | 0 |
last_payout | 2017-10-17 17:14:45 |
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 | 36 |
author_reputation | 5,172,359,680,522 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,316,985 |
net_rshares | 0 |
Good job
author | kaleem345 |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171003t082621802z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-03 08:28:09 |
last_update | 2017-10-03 08:28:09 |
depth | 1 |
children | 0 |
last_payout | 2017-10-10 08:28: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 | 8 |
author_reputation | 9,849,577,612,331 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,645,828 |
net_rshares | 0 |
Nice
author | kaleem345 |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171003t094145002z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-03 09:43:33 |
last_update | 2017-10-03 09:43:33 |
depth | 1 |
children | 0 |
last_payout | 2017-10-10 09:43:33 |
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 | 4 |
author_reputation | 9,849,577,612,331 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,650,775 |
net_rshares | 0 |
Nice
author | kaleem345 |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171003t112224357z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-03 11:24:12 |
last_update | 2017-10-03 11:24:12 |
depth | 1 |
children | 0 |
last_payout | 2017-10-10 11:24:12 |
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 | 4 |
author_reputation | 9,849,577,612,331 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,658,096 |
net_rshares | 0 |
Great work! @anomaly! I wish I could be half as smart as you are! Wonderful, innovative work, keep it up! Hope you are very well. Cheers.
author | kaminchan |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t065127918z |
category | technology |
json_metadata | {"tags":["technology"],"users":["anomaly"],"app":"steemit/0.1"} |
created | 2017-09-28 06:51:54 |
last_update | 2017-09-28 06:51:54 |
depth | 1 |
children | 0 |
last_payout | 2017-10-05 06:51:54 |
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 | 139 |
author_reputation | 551,429,410,455,924 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,155,244 |
net_rshares | 0 |
wow...well...thats mindblowing....great research...and i really like the way you put it up @anomaly
author | kristjannacaj |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171014t032032742z |
category | technology |
json_metadata | {"tags":["technology"],"users":["anomaly"],"app":"steemit/0.1"} |
created | 2017-10-14 03:20:33 |
last_update | 2017-10-14 03:20:33 |
depth | 1 |
children | 0 |
last_payout | 2017-10-21 03:20:33 |
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 | 99 |
author_reputation | 6,257,342,122 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,633,170 |
net_rshares | 0 |
it would be nice if you could alter hashing like on tor network by using something like scallion so sites could look more like for example http://facebookcorewwwi.onion.
author | leocrypt |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171005t025313838z |
category | technology |
json_metadata | {"tags":["technology"],"links":["http://facebookcorewwwi.onion"],"app":"steemit/0.1"} |
created | 2017-10-05 02:53:15 |
last_update | 2017-10-05 02:53:15 |
depth | 1 |
children | 0 |
last_payout | 2017-10-12 02:53: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 | 171 |
author_reputation | 611,105,553 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,818,037 |
net_rshares | 0 |
I own a few [ProxMox ](https://www.proxmox.com/en/) Servers for my web hosting company in Atlanta Georgia. Looks like my weekend will be spent playing with your config. Thank you for this, thank you very much. ### Just my two STEEMS Worth.
author | libertyranger |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170930t024519159z |
category | technology |
json_metadata | {"tags":["technology"],"image":["https://steemitimages.com/DQmeqs2oi6h1JMYCpEgceLL4qtxTgjY3dk1Hg64VxuxSt55/image.png"],"links":["https://www.proxmox.com/en/"],"app":"steemit/0.1"} |
created | 2017-09-30 02:45:18 |
last_update | 2017-09-30 02:45:18 |
depth | 1 |
children | 0 |
last_payout | 2017-10-07 02:45:18 |
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 | 419 |
author_reputation | 7,267,049,896,950 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,335,641 |
net_rshares | 0 |
advancing technologically
author | luzfermin |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171006t170147421z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-06 17:03:57 |
last_update | 2017-10-06 17:03:57 |
depth | 1 |
children | 0 |
last_payout | 2017-10-13 17:03: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 | 25 |
author_reputation | 218,979,759,009 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,938,835 |
net_rshares | 0 |
Thanks @anomaly for always upvoting my blogs.
author | maaz23 |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171004t180246141z |
category | technology |
json_metadata | {"tags":["technology"],"users":["anomaly"],"app":"steemit/0.1"} |
created | 2017-10-04 18:02:48 |
last_update | 2017-10-04 18:02:48 |
depth | 1 |
children | 0 |
last_payout | 2017-10-11 18:02:48 |
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 | 45 |
author_reputation | 1,236,644,183,544 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,785,834 |
net_rshares | 0 |
good job
author | mahmudulhaque |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171013t081910758z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-13 08:19:15 |
last_update | 2017-10-13 08:19:15 |
depth | 1 |
children | 0 |
last_payout | 2017-10-20 08:19: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 | 8 |
author_reputation | 8,049,887,415 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,564,578 |
net_rshares | 0 |
flow me and i will flow you
author | mdgazi |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171007t091132470z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-06 12:12:09 |
last_update | 2017-10-06 12:12:09 |
depth | 1 |
children | 0 |
last_payout | 2017-10-13 12:12: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 | 27 |
author_reputation | 4,589,373,966 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,926,901 |
net_rshares | 0 |
Nice
author | mdgazi |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171008t013844872z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-07 04:39:21 |
last_update | 2017-10-07 04:39:21 |
depth | 1 |
children | 0 |
last_payout | 2017-10-14 04:39: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 | 4 |
author_reputation | 4,589,373,966 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,973,233 |
net_rshares | 0 |
Great explanation, thanks for uploading
author | mdsaimonuddin |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171014t184448769z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-14 18:44:51 |
last_update | 2017-10-14 18:44:51 |
depth | 1 |
children | 0 |
last_payout | 2017-10-21 18:44: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 | 39 |
author_reputation | 87,348,723,572 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,689,610 |
net_rshares | 0 |
This post recieved an upvote from minnowpond. If you would like to recieve upvotes from minnowpond on all your posts, simply FOLLOW @minnowpond
author | minnowpond |
---|---|
permlink | re-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t064332 |
category | technology |
json_metadata | "{"app": "pysteem/0.5.4"}" |
created | 2017-09-28 06:43:33 |
last_update | 2017-09-28 06:43:33 |
depth | 1 |
children | 0 |
last_payout | 2017-10-05 06:43:33 |
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 | 143 |
author_reputation | 13,239,048,956,578 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,154,699 |
net_rshares | 0 |
nice post guys https://steemit.com/colorchallenge/@mocin1993/color-challenge-purple
author | mocin1993 |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171008t075920122z |
category | technology |
json_metadata | {"tags":["technology"],"links":["https://steemit.com/colorchallenge/@mocin1993/color-challenge-purple"],"app":"steemit/0.1"} |
created | 2017-10-08 07:59:27 |
last_update | 2017-10-08 07:59:27 |
depth | 1 |
children | 0 |
last_payout | 2017-10-15 07:59:27 |
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 | 83 |
author_reputation | 4,527,117,383,340 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,080,336 |
net_rshares | 0 |
I wish I can code :) thanks for upvoting my post (I saw that many times now. thx)
author | mountrock |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171002t200808476z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-02 20:08:27 |
last_update | 2017-10-02 20:09:03 |
depth | 1 |
children | 0 |
last_payout | 2017-10-09 20:08:27 |
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 | 81 |
author_reputation | 10,118,100,819,203 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,601,224 |
net_rshares | 0 |
Upvoted and followed , you know your stuff !!! Going to certainly read your other posts !!
author | navala |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171005t094628187z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-05 09:46:30 |
last_update | 2017-10-05 09:46:30 |
depth | 1 |
children | 0 |
last_payout | 2017-10-12 09:46: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 | 90 |
author_reputation | 254,801,529,717 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,843,484 |
net_rshares | 0 |
Good info
author | naveendavisv |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171007t224539357z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-07 22:45:42 |
last_update | 2017-10-07 22:45:42 |
depth | 1 |
children | 0 |
last_payout | 2017-10-14 22:45:45 |
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 | 9 |
author_reputation | 32,557,718,122 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,050,392 |
net_rshares | 0 |
good technology..!
author | nomishiekh |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t064740388z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-09-28 06:47:42 |
last_update | 2017-09-28 06:47:42 |
depth | 1 |
children | 0 |
last_payout | 2017-10-05 06:47:42 |
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 | 18 |
author_reputation | -211,330,433,474 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,154,962 |
net_rshares | 0 |
I am older and just beginning to code, but this protocol is making it worth it. I can remember when the internet was mostly decentralized and would like to see that again. Thanx!
author | pastbastard |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t065124880z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-09-28 06:51:30 |
last_update | 2017-09-28 06:51:30 |
depth | 1 |
children | 0 |
last_payout | 2017-10-05 06:51: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 | 178 |
author_reputation | 1,306,345,703,844 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,155,215 |
net_rshares | 6,131,839,255 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kkugel2 | 0 | 224,680,776 | 100% | ||
zacharyscottrose | 0 | 5,907,158,479 | 100% |
science technology! anomaly
author | prashantahlawat |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171001t054140087z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-01 05:41:42 |
last_update | 2017-10-01 05:41:42 |
depth | 1 |
children | 0 |
last_payout | 2017-10-08 05:41:42 |
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 | 27 |
author_reputation | 105,831,015,203 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,440,238 |
net_rshares | 0 |
@anomaly thank you for visiting....
author | ridwant |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t175505907z |
category | technology |
json_metadata | {"tags":["technology"],"users":["anomaly"],"app":"steemit/0.1"} |
created | 2017-09-28 17:55:12 |
last_update | 2017-09-28 17:55:12 |
depth | 1 |
children | 0 |
last_payout | 2017-10-05 17:55:12 |
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 | 35 |
author_reputation | 7,123,520,801,744 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,204,298 |
net_rshares | 0 |
@anomaly thanks for visiting
author | ridwant |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171004t150836545z |
category | technology |
json_metadata | {"tags":["technology"],"users":["anomaly"],"app":"steemit/0.1"} |
created | 2017-10-04 15:08:39 |
last_update | 2017-10-04 15:08:39 |
depth | 1 |
children | 0 |
last_payout | 2017-10-11 15:08: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 | 28 |
author_reputation | 7,123,520,801,744 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,772,371 |
net_rshares | 0 |
Followed n upvoted . Please follow me .
author | rizzo9 |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171010t213918982z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-10 21:39:18 |
last_update | 2017-10-10 21:39:18 |
depth | 1 |
children | 1 |
last_payout | 2017-10-17 21:39:18 |
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 | 39 |
author_reputation | -16,001,017,737 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,336,053 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
rizzo9 | 0 | 0 | 100% |
good technology..!
author | mhdriza |
---|---|
permlink | re-rizzo9-re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171011t063612504z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-11 06:36:09 |
last_update | 2017-10-11 06:36:09 |
depth | 2 |
children | 0 |
last_payout | 2017-10-18 06:36: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 | 18 |
author_reputation | 713,792,093,419 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,365,563 |
net_rshares | 0 |
good info
author | roshanlal2017 |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171007t082022781z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-07 08:20:36 |
last_update | 2017-10-07 08:20:36 |
depth | 1 |
children | 0 |
last_payout | 2017-10-14 08:20:36 |
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 | 9 |
author_reputation | 37,213,845,809 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,986,970 |
net_rshares | 0 |
thanks for the wonderful information like this. i hope to see more of your post. done following upvoting and resteeming your post. :) God bless
author | ruah |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t213819196z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-09-28 06:39:51 |
last_update | 2017-09-28 06:39:51 |
depth | 1 |
children | 0 |
last_payout | 2017-10-05 06:39: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 | 143 |
author_reputation | 55,491,574,280,489 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,154,481 |
net_rshares | 0 |
The world is the planet Earth and all life upon it, including human civilization. In a philosophical context, the world is the whole of the earth.so beautifull post..thank you and thank you so much.
author | rumaraj |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171011t091628037z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-11 09:16:42 |
last_update | 2017-10-11 09:16:42 |
depth | 1 |
children | 0 |
last_payout | 2017-10-18 09:16:42 |
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 | 199 |
author_reputation | 14,602,298,200 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,376,090 |
net_rshares | 0 |
Nice
author | sadique |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170929t095148521z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-09-29 09:51:54 |
last_update | 2017-09-29 09:51:54 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 09:51:54 |
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 | 4 |
author_reputation | 5,156,316,020 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,262,535 |
net_rshares | 0 |
Thank you for sharingβ¨β
author | sakurahana |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171008t104349919z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-08 10:43:51 |
last_update | 2017-10-08 10:43:51 |
depth | 1 |
children | 0 |
last_payout | 2017-10-15 10:43: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 | 23 |
author_reputation | 4,455,133,902,624 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,091,437 |
net_rshares | 0 |
good, can add information for all @anomaly
author | salman.craf | ||||||
---|---|---|---|---|---|---|---|
permlink | re-anomaly-2017102t174030172z | ||||||
category | technology | ||||||
json_metadata | {"tags":"technology","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-10-02 10:40:36 | ||||||
last_update | 2017-10-02 10:40:36 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-10-09 10:40:36 | ||||||
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 | 42 | ||||||
author_reputation | 1,150,808,342,930 | ||||||
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 16,556,470 | ||||||
net_rshares | 0 |
nice bro
author | sardarmani |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171013t102906851z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-13 10:28:57 |
last_update | 2017-10-13 10:28:57 |
depth | 1 |
children | 0 |
last_payout | 2017-10-20 10:28: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 | 8 |
author_reputation | 3,069,426,240 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,572,773 |
net_rshares | 0 |
cool!
author | savastr |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171003t112342740z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-03 11:23:42 |
last_update | 2017-10-03 11:23:42 |
depth | 1 |
children | 0 |
last_payout | 2017-10-10 11:23:42 |
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 | 5 |
author_reputation | 25,014,342,049 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,658,043 |
net_rshares | 0 |
Keep me follow and Upvote same for You π
author | saydur |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171005t224951364z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-05 22:49:54 |
last_update | 2017-10-05 22:49:54 |
depth | 1 |
children | 0 |
last_payout | 2017-10-12 22:49:54 |
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 | 40 |
author_reputation | -94,720,416,601 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,899,359 |
net_rshares | 0 |
thanks for your post bro and also thank you voting me we need to help each other following me please we need to success each other help.
author | sherin |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171007t101851027z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-07 10:18:51 |
last_update | 2017-10-07 10:18:51 |
depth | 1 |
children | 0 |
last_payout | 2017-10-14 10:18: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 | 136 |
author_reputation | 31,576,084,024 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,994,954 |
net_rshares | 0 |
Good job. Very well explained. Thanks for sharing
author | smartgeek |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171015t084735080z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-15 08:47:24 |
last_update | 2017-10-15 08:47:24 |
depth | 1 |
children | 0 |
last_payout | 2017-10-22 08:47: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 | 49 |
author_reputation | 303,476,072,740 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,732,389 |
net_rshares | 703,863,640 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
smartgeek | 0 | 703,863,640 | 100% |
WOW! Nice work
author | solarparadise |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170929t013037212z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-09-29 01:30:39 |
last_update | 2017-09-29 01:30:39 |
depth | 1 |
children | 0 |
last_payout | 2017-10-06 01:30: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 | 14 |
author_reputation | 345,658,586,715 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,232,115 |
net_rshares | 0 |
Congratulations @anomaly! You have completed some achievement on Steemit and have been rewarded with new badge(s) : [](http://steemitboard.com/@anomaly) Award for the number of upvotes received Click on any badge to view your own Board of Honor on SteemitBoard. For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard) If you no longer want to receive notifications, reply to this comment with the word `STOP` > By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
author | steemitboard |
---|---|
permlink | steemitboard-notify-anomaly-20170928t084618000z |
category | technology |
json_metadata | {"image":["https://steemitboard.com/img/notifications.png"]} |
created | 2017-09-28 08:46:18 |
last_update | 2017-09-28 08:46:18 |
depth | 1 |
children | 0 |
last_payout | 2017-10-05 08:46:18 |
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 | 693 |
author_reputation | 38,975,615,169,260 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,162,057 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
voltronluis | 0 | 0 | 100% |
Congratulations @anomaly! You have completed some achievement on Steemit and have been rewarded with new badge(s) : [](http://steemitboard.com/@anomaly) Award for the number of upvotes Click on any badge to view your own Board of Honor on SteemitBoard. For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard) If you no longer want to receive notifications, reply to this comment with the word `STOP` > By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
author | steemitboard |
---|---|
permlink | steemitboard-notify-anomaly-20170928t170326000z |
category | technology |
json_metadata | {"image":["https://steemitboard.com/img/notifications.png"]} |
created | 2017-09-28 17:03:24 |
last_update | 2017-09-28 17:03:24 |
depth | 1 |
children | 0 |
last_payout | 2017-10-05 17:03: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 | 684 |
author_reputation | 38,975,615,169,260 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,200,135 |
net_rshares | 0 |
Congratulations @anomaly! You have completed some achievement on Steemit and have been rewarded with new badge(s) : [](http://steemitboard.com/@anomaly) Award for the number of upvotes Click on any badge to view your own Board of Honor on SteemitBoard. For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard) If you no longer want to receive notifications, reply to this comment with the word `STOP` > By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
author | steemitboard |
---|---|
permlink | steemitboard-notify-anomaly-20171015t191623000z |
category | technology |
json_metadata | {"image":["https://steemitboard.com/img/notifications.png"]} |
created | 2017-10-15 19:16:21 |
last_update | 2017-10-15 19:16:21 |
depth | 1 |
children | 0 |
last_payout | 2017-10-22 19:16: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 | 684 |
author_reputation | 38,975,615,169,260 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,772,684 |
net_rshares | 0 |
very good post dear
author | sukhen1155 |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171116t132456729z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-11-16 13:25:03 |
last_update | 2017-11-16 13:25:03 |
depth | 1 |
children | 0 |
last_payout | 2017-11-23 13:25: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 | 19 |
author_reputation | 5,859,231,304,939 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 20,571,745 |
net_rshares | 0 |
https://steemitimages.com/DQmaxbn2X4FYDfLB432oxmfAaDxsM6eY6CYqLsLKYxHEKes/SUPER-GRAND-AD%20LOGO.jpg?r=super-grand-ad Hi Anomaly From @super-grand-ad As promised I am upvote 300 to your latest post I have got IPFS up and running You have upvoted @super-grand-ad But you left no comment in my post https://steemit.com/introduceyouritself/@super-grand-ad/number-01-sweetest-little-rock-n-roller-free-download Thank you for the upvote I also Followed you - See me in your followed list - scroll through the alphabetical list to @super-grand-ad and click follow RIGHT CLICK THE LINK BELOW Click - OPEN IN NEW TAB See the new tab at the top of you screen OPEN the new TAB https://steemit.com/@anomaly/followers As A bonus All your New Posts will be Auto upvoted from 18:00 GMT 08 Oct 2017 till 14 Oct 2017 Anyone that upvotes and replies me @super-grand-ad I upvote for upvote Reply for Reply βΊβ« resteem for resteem I will keep in touch βΊβ« Have a Good Day from @super-grand-ad
author | super-grand-ad |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171008t035438397z |
category | technology |
json_metadata | {"tags":["technology"],"users":["super-grand-ad"],"image":["https://steemitimages.com/DQmaxbn2X4FYDfLB432oxmfAaDxsM6eY6CYqLsLKYxHEKes/SUPER-GRAND-AD%20LOGO.jpg?r=super-grand-ad"],"links":["https://steemit.com/introduceyouritself/@super-grand-ad/number-01-sweetest-little-rock-n-roller-free-download","https://steemit.com/@anomaly/followers"],"app":"steemit/0.1"} |
created | 2017-10-08 03:54:39 |
last_update | 2017-10-08 04:23:51 |
depth | 1 |
children | 1 |
last_payout | 2017-10-15 03: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 | 990 |
author_reputation | -196,943,852,061 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,065,965 |
net_rshares | 2,936,087,777 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
super-grand-ad | 0 | 2,936,087,777 | 100% |
nice information
author | ashikrahman |
---|---|
permlink | re-super-grand-ad-re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171014t101541690z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-14 10:20:24 |
last_update | 2017-10-14 10:20:24 |
depth | 2 |
children | 0 |
last_payout | 2017-10-21 10:20: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 | 16 |
author_reputation | 9,316,585,780 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,655,520 |
net_rshares | 0 |
<was here looking for new posts :) thank you tons for all your support :D π
author | swedishdragon |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171007t142130047z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-07 14:21:33 |
last_update | 2017-10-07 14:21:33 |
depth | 1 |
children | 0 |
last_payout | 2017-10-14 14:21:33 |
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 | 75 |
author_reputation | 71,996,416,082,915 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,013,389 |
net_rshares | 0 |
olalalal, the level... :). thanks a lot! all the best.
author | sweecee |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171129t203454984z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-11-29 20:34:54 |
last_update | 2017-11-29 20:37:24 |
depth | 1 |
children | 0 |
last_payout | 2017-12-06 20:34:54 |
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 | 54 |
author_reputation | -547,443,381,596 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,924,565 |
net_rshares | 0 |
i didn't use linux variant, hope i can see a way to got this on windows OS soon :)
author | syafrizal |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171005t052313061z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-05 05:23:24 |
last_update | 2017-10-05 05:23:24 |
depth | 1 |
children | 0 |
last_payout | 2017-10-12 05:23: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 | 82 |
author_reputation | 450,762,370,984 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,826,913 |
net_rshares | 0 |
follow me and upvote my [post @tanvirsadatripon
author | tanvirsadatripon |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171013t110534031z |
category | technology |
json_metadata | {"tags":["technology"],"users":["tanvirsadatripon"],"app":"steemit/0.1"} |
created | 2017-10-13 11:05:39 |
last_update | 2017-10-13 11:05:39 |
depth | 1 |
children | 0 |
last_payout | 2017-10-20 11:05: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 | 47 |
author_reputation | 819,922,476,299 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,575,081 |
net_rshares | 0 |
Hello guys please register through this link i will be very thankful to you please i need referrals and you can also earn big amount you can check but please help me in getting my target of 40 referrals. I need 40 people to register this link please. I will give you referrals in return but please kindly login through this link. http://padyredrgi.loan/5317664160364/
author | tayyab1234 |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171004t161411179z |
category | technology |
json_metadata | {"tags":["technology"],"links":["http://padyredrgi.loan/5317664160364/"],"app":"steemit/0.1"} |
created | 2017-10-04 16:14:21 |
last_update | 2017-10-04 16:14:21 |
depth | 1 |
children | 0 |
last_payout | 2017-10-11 16:14: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 | 368 |
author_reputation | -1,659,170,248 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,777,894 |
net_rshares | -18,329,874,923 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anomaly | 0 | -18,329,874,923 | -100% |
good blog ! follow me @toha
author | toha |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171015t071510574z |
category | technology |
json_metadata | {"tags":["technology"],"users":["toha"],"app":"steemit/0.1"} |
created | 2017-10-15 07:14:21 |
last_update | 2017-10-15 07:14:21 |
depth | 1 |
children | 0 |
last_payout | 2017-10-22 07:14: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 | 28 |
author_reputation | 131,088,779,588 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,727,083 |
net_rshares | 0 |
Hi Anomaly thx for stop and Watch my photos apreciate your vote you have interesting stuff i Will follow you thanks for sharing!
author | valenziia |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171014t205755258z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-14 20:57:54 |
last_update | 2017-10-14 20:57:54 |
depth | 1 |
children | 0 |
last_payout | 2017-10-21 20:57:54 |
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 | 128 |
author_reputation | 26,222,160,669 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,697,199 |
net_rshares | 0 |
## THANKS
author | voltronluis |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171013t031653792z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2017-10-13 03:16:42 |
last_update | 2017-10-13 03:16:42 |
depth | 1 |
children | 0 |
last_payout | 2017-10-20 03:16:42 |
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 | 9 |
author_reputation | 1,968,404,307,663 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,546,729 |
net_rshares | 2,955,562,340 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
voltronluis | 0 | 2,955,562,340 | 100% |
δΈιοΌζεζ¬’
author | worgen |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20180815t123917666z |
category | technology |
json_metadata | {"tags":["technology"],"app":"steemit/0.1"} |
created | 2018-08-15 12:39:30 |
last_update | 2018-08-15 12:39:30 |
depth | 1 |
children | 0 |
last_payout | 2018-08-22 12:39: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 | 6 |
author_reputation | 0 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 68,271,083 |
net_rshares | 0 |
@zublizainordin says @anomaly <img src='https://i.imgur.com/llMBcUJ.jpg' /> #zublizainordin #teammalaysia
author | zublizainordin |
---|---|
permlink | re-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171209t154431911z |
category | technology |
json_metadata | {"tags":["technology","zublizainordin","teammalaysia"],"users":["zublizainordin","anomaly"],"image":["https://i.imgur.com/llMBcUJ.jpg"],"app":"steemit/0.1"} |
created | 2017-12-09 15:44:33 |
last_update | 2017-12-09 15:44:33 |
depth | 1 |
children | 0 |
last_payout | 2017-12-16 15:44:33 |
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 | 107 |
author_reputation | 11,495,366,966,874 |
root_title | "IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 22,898,194 |
net_rshares | 123,311,398 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
zublizainordin | 0 | 123,311,398 | 100% |