create account

IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests) by anomaly

View this thread on: hive.blogpeakd.comecency.com
· @anomaly ·
$7.38
IPFS - Interplanetary Filesystem - How to set up a writable IPFS Gateway on a VPS (and configure CORS for cross-domain requests)
<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. &nbsp;But IPFS was built in a Peer To Peer model with the modern Internet in mind. &nbsp;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). &nbsp;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. &nbsp;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. &nbsp;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>![QmTbhNNgnSzDnQj8mLELcxqZKwUwbzpnHj2iMeqscjpDEF.jpg](https://steemitimages.com/DQmNrngttXKVni35vSH9UuwMjcFjF7EKoX5TVGBn5fgt2vn/QmTbhNNgnSzDnQj8mLELcxqZKwUwbzpnHj2iMeqscjpDEF.jpg)</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. &nbsp;(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. &nbsp;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. &nbsp;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 '[ &nbsp;&nbsp;"/ip4/10.0.0.0/ipcidr/8", &nbsp;&nbsp;"/ip4/100.64.0.0/ipcidr/10", &nbsp;&nbsp;"/ip4/169.254.0.0/ipcidr/16", &nbsp;&nbsp;"/ip4/172.16.0.0/ipcidr/12", &nbsp;&nbsp;"/ip4/192.0.0.0/ipcidr/24", &nbsp;&nbsp;"/ip4/192.0.0.0/ipcidr/29", &nbsp;&nbsp;"/ip4/192.0.0.8/ipcidr/32", &nbsp;&nbsp;"/ip4/192.0.0.170/ipcidr/32", &nbsp;&nbsp;"/ip4/192.0.0.171/ipcidr/32", &nbsp;&nbsp;"/ip4/192.0.2.0/ipcidr/24", &nbsp;&nbsp;"/ip4/192.168.0.0/ipcidr/16", &nbsp;&nbsp;"/ip4/198.18.0.0/ipcidr/15", &nbsp;&nbsp;"/ip4/198.51.100.0/ipcidr/24", &nbsp;&nbsp;"/ip4/203.0.113.0/ipcidr/24", &nbsp;&nbsp;"/ip4/240.0.0.0/ipcidr/4" ]'</code></blockquote>
<blockquote><code>ipfs daemon &amp;</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. &nbsp;So now for the fun part, we need to make it a writable gateway and enable CORS. &nbsp;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. &nbsp;We need to change it to look like this:</p>
<blockquote><code>&nbsp;&nbsp;"Gateway": {</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;"HTTPHeaders": {</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"Access-Control-Allow-Headers": [</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"X-Requested-With",</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"Access-Control-Expose-Headers",</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"Range"</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;],</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"Access-Control-Expose-Headers": [</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"Location",</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"Ipfs-Hash"</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;],</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"Access-Control-Allow-Methods": [</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"GET",</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"POST"</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;],</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"Access-Control-Allow-Origin": [</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"*"</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;],</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"X-Special-Header": [</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"Access-Control-Expose-Headers: Ipfs-Hash"</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;]</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;},</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;"PathPrefixes": [],</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;"RootRedirect": "",</code></blockquote>
<blockquote><code>&nbsp;&nbsp;&nbsp;&nbsp;"Writable": true</code></blockquote>
<blockquote><code>&nbsp;&nbsp;},</code></blockquote>
<p>What we just did there was change the gateway settings to allow writing (posting) and CORS for cross-domain requests. &nbsp;There only one thing left to do now. &nbsp;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 &amp;"\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! &nbsp;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. &nbsp;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. &nbsp;They are in need of hosting and developers.</p>
</html>
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 602 others
πŸ‘Ž  ,
properties (23)
authoranomaly
permlinkipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests
categorytechnology
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"}
created2017-09-28 06:32:33
last_update2017-09-28 06:32:33
depth0
children101
last_payout2017-10-05 06:32:33
cashout_time1969-12-31 23:59:59
total_payout_value6.640 HBD
curator_payout_value0.744 HBD
pending_payout_value0.000 HBD
promoted0.100 HBD
body_length8,593
author_reputation29,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,154,034
net_rshares2,561,791,573,768
author_curate_reward""
vote details (668)
@abieikram ·
Very useful ,, thanks his information
properties (22)
authorabieikram
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t080806602z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-09-28 08:08:18
last_update2017-09-28 08:08:18
depth1
children0
last_payout2017-10-05 08:08:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation1,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,159,662
net_rshares0
@aek081969 ·
Wonderful post!! The photo and explanations were wonderful ,Cool !!
properties (22)
authoraek081969
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t220026635z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-09-28 22:00:09
last_update2017-09-28 22:00:09
depth1
children0
last_payout2017-10-05 22:00:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation1,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,220,776
net_rshares0
@ahlawat ·
great content! anomaly
properties (22)
authorahlawat
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t064710510z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-09-28 06:47:12
last_update2017-09-28 06:47:12
depth1
children0
last_payout2017-10-05 06:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation48,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,154,926
net_rshares0
@ak2813 ·
WOW  very good
properties (22)
authorak2813
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171007t145925861z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-07 14:59:30
last_update2017-10-07 14:59:30
depth1
children0
last_payout2017-10-14 14:59:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation324,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,016,506
net_rshares0
@amjad11 ·
Very good post
properties (22)
authoramjad11
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171003t145131594z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-03 02:51:36
last_update2017-10-03 02:51:36
depth1
children1
last_payout2017-10-10 02:51:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation1,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,625,489
net_rshares0
@amjad11 · (edited)
Follow me @amjad11 & Upvote me Thanks
properties (22)
authoramjad11
permlinkre-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
categorytechnology
json_metadata{"tags":["technology"],"users":["amjad11"],"app":"steemit/0.1"}
created2017-10-03 02:52:06
last_update2017-10-03 02:52:39
depth2
children0
last_payout2017-10-10 02:52:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation1,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,625,511
net_rshares0
@angel35mm ·
Thanks for this!
properties (22)
authorangel35mm
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t114643565z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-09-28 11:46:42
last_update2017-09-28 11:46:42
depth1
children0
last_payout2017-10-05 11:46:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation176,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,174,190
net_rshares0
@arquiatra ·
Congratulations. this publication is very interesting and educational, Thank you for sharing it.
properties (22)
authorarquiatra
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171007t173828097z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-07 17:38:33
last_update2017-10-07 17:38:33
depth1
children0
last_payout2017-10-14 17:38:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation1,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,030,550
net_rshares0
@as-i-see-it ·
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. :-)
properties (22)
authoras-i-see-it
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171003t011007205z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-03 01:10:00
last_update2017-10-03 01:10:00
depth1
children0
last_payout2017-10-10 01:10:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length281
author_reputation2,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,619,568
net_rshares0
@ashikrahman ·
very nice
properties (22)
authorashikrahman
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171014t101635332z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-14 10:21:09
last_update2017-10-14 10:21:09
depth1
children0
last_payout2017-10-21 10:21:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation9,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,655,566
net_rshares0
@azhar11 ·
Anyone can give me steem power
properties (22)
authorazhar11
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171008t012936899z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-08 01:29:42
last_update2017-10-08 01:29:42
depth1
children0
last_payout2017-10-15 01:29:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,058,425
net_rshares0
@bescouted ·
Amazing article, amazing technology. Since i am nor an engineer myself, i have instantly shared this article with them. Than you for this post!
properties (22)
authorbescouted
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171008t091309879z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-08 09:13:09
last_update2017-10-08 09:13:09
depth1
children0
last_payout2017-10-15 09:13:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length143
author_reputation118,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,085,056
net_rshares0
@bestssnahid ·
Great information!
properties (22)
authorbestssnahid
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t075745205z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-09-28 07:57:54
last_update2017-09-28 07:57:54
depth1
children0
last_payout2017-10-05 07:57:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,158,978
net_rshares0
@bigtrue ·
hy friend
properties (22)
authorbigtrue
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171014t094919577z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-14 09:49:21
last_update2017-10-14 09:49:21
depth1
children0
last_payout2017-10-21 09:49:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation1,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,653,662
net_rshares0
@bobinson ·
This is some FS. Never heard about this in my 18+ years of existences in the UNIX universe!
properties (22)
authorbobinson
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171017t045656110z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-17 04:56:57
last_update2017-10-17 04:56:57
depth1
children0
last_payout2017-10-24 04:56:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length91
author_reputation55,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,875,100
net_rshares0
@bonsaiaustin ·
I believe the alt coin Ark will implement this in a future release, interesting concept and hopefully we can see more about this.
πŸ‘  
properties (23)
authorbonsaiaustin
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20180208t035755476z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2018-02-08 03:57:54
last_update2018-02-08 03:57:54
depth1
children0
last_payout2018-02-15 03:57:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length129
author_reputation37,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,819,401
net_rshares168,975,382
author_curate_reward""
vote details (1)
@bromedya ·
I love to computer codes :) Best sharing. Thanks. Follow you.
properties (22)
authorbromedya
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t114535220z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-09-28 11:45:36
last_update2017-09-28 11:45:36
depth1
children0
last_payout2017-10-05 11:45:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation269,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,174,129
net_rshares0
@bromedya ·
Best Shared... I share fun videos every day. Please follow me and like to my videos?
properties (22)
authorbromedya
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171002t135037754z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-02 13:50:42
last_update2017-10-02 13:50:42
depth1
children0
last_payout2017-10-09 13:50:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation269,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,570,597
net_rshares0
@carlfoutley ·
Woooooow
properties (22)
authorcarlfoutley
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171003t224555680z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-03 22:46:12
last_update2017-10-03 22:46:12
depth1
children0
last_payout2017-10-10 22:46:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation4,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,710,053
net_rshares0
@carlossoublette ·
I loved your post, a greeting for you, my brother @anomaly
πŸ‘  
properties (23)
authorcarlossoublette
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171013t165441693z
categorytechnology
json_metadata{"tags":["technology"],"users":["anomaly"],"app":"steemit/0.1"}
created2017-10-13 16:53:30
last_update2017-10-13 16:53:30
depth1
children0
last_payout2017-10-20 16:53:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation9,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,598,991
net_rshares438,618,480
author_curate_reward""
vote details (1)
@cryptofinance ·
Nice informative post with coding implications!!!
πŸ‘  ,
properties (23)
authorcryptofinance
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t225139400z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-09-28 22:51:39
last_update2017-09-28 22:51:39
depth1
children1
last_payout2017-10-05 22:51:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation226,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,223,707
net_rshares1,687,632,910
author_curate_reward""
vote details (2)
@navala ·
Followed n upvoted . Please follow me .
properties (22)
authornavala
permlinkre-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
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-05 09:48:03
last_update2017-10-05 09:48:03
depth2
children0
last_payout2017-10-12 09:48:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation254,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,843,568
net_rshares0
@danzy ·
Good info nice to know.
properties (22)
authordanzy
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t094224063z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-09-28 09:42:24
last_update2017-09-28 09:42:24
depth1
children0
last_payout2017-10-05 09:42:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation5,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,165,844
net_rshares0
@dekgam ·
Nice information
properties (22)
authordekgam
permlinkre-anomaly-2017104t122834766z
categorytechnology
json_metadata{"tags":"technology","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-10-04 05:28:36
last_update2017-10-04 05:28:36
depth1
children0
last_payout2017-10-11 05:28:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation74,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
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,731,965
net_rshares0
@dmcamera ·
Coding has come a long way since I used to code in COBOL. seems like it was a century ago. LOL!
properties (22)
authordmcamera
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t230025904z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-09-28 23:00:27
last_update2017-09-28 23:00:27
depth1
children0
last_payout2017-10-05 23:00:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation12,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,224,257
net_rshares0
@dobartim ·
Amazing blog my friend....
properties (22)
authordobartim
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t080735177z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-09-28 08:07:36
last_update2017-09-28 08:07:36
depth1
children0
last_payout2017-10-05 08:07:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation624,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,159,615
net_rshares0
@enriqueig ·
nice great pictures 
properties (22)
authorenriqueig
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171009t135938711z
categorytechnology
json_metadata{"tags":["technology"],"app":"busy/1.0.0"}
created2017-10-09 13:59:39
last_update2017-10-09 13:59:39
depth1
children0
last_payout2017-10-16 13:59:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation6,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,200,963
net_rshares0
@evildido ·
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". 
properties (22)
authorevildido
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171013t115801068z
categorytechnology
json_metadata{"tags":["technology"],"community":"busy","app":"busy/2.0.0"}
created2017-10-13 11:58:00
last_update2017-10-13 11:58:00
depth1
children0
last_payout2017-10-20 11:58:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length231
author_reputation10,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,578,281
net_rshares0
@fakharuddin ·
tnx for voting my post...plz help
properties (22)
authorfakharuddin
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171005t025126138z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-05 02:51:33
last_update2017-10-05 02:51:33
depth1
children0
last_payout2017-10-12 02:51:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation6,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,817,948
net_rshares0
@fthi ·
We will support each other
properties (22)
authorfthi
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171009t214411249z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-09 21:44:09
last_update2017-10-09 21:44:09
depth1
children0
last_payout2017-10-16 21:44:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,234,975
net_rshares0
@funworld ·
awesome post!
properties (22)
authorfunworld
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171008t065634995z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-08 06:56:36
last_update2017-10-08 06:56:36
depth1
children0
last_payout2017-10-15 06:56:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation10,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,076,532
net_rshares0
@gamzeuzun ·
Very nice completion of post! @anomaly
properties (22)
authorgamzeuzun
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t100153120z
categorytechnology
json_metadata{"tags":["technology"],"users":["anomaly"],"app":"steemit/0.1"}
created2017-09-28 10:01:57
last_update2017-09-28 10:01:57
depth1
children0
last_payout2017-10-05 10:01:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation7,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,167,269
net_rshares0
@ganeshsahu ·
Plz visit once to my page.i hope u like my posts
properties (22)
authorganeshsahu
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171004t084138307z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-04 08:41:45
last_update2017-10-04 08:41:45
depth1
children0
last_payout2017-10-11 08:41:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation3,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,744,142
net_rshares0
@geisha1972 ·
wonderful thanks for the information
properties (22)
authorgeisha1972
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171004t035219768z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-04 03:48:03
last_update2017-10-04 03:48:03
depth1
children0
last_payout2017-10-11 03:48:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation17,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,726,255
net_rshares0
@geneeverett ·
$0.02
My own gateway! About time :)
Upvoted indeed
πŸ‘  
properties (23)
authorgeneeverett
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t222535982z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-09-28 22:25:36
last_update2017-09-28 22:25:36
depth1
children5
last_payout2017-10-05 22:25:36
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation552,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,222,180
net_rshares7,483,188,913
author_curate_reward""
vote details (1)
@amjad11 ·
Follow me @amjad11 & Upvote
πŸ‘  
properties (23)
authoramjad11
permlinkre-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
categorytechnology
json_metadata{"tags":["technology"],"users":["amjad11"],"app":"steemit/0.1"}
created2017-10-03 02:53:27
last_update2017-10-03 02:53:27
depth2
children3
last_payout2017-10-10 02:53:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation1,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,625,587
net_rshares534,892,135
author_curate_reward""
vote details (1)
@navala ·
Followed n upvoted. Please follow me .
properties (22)
authornavala
permlinkre-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
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-05 09:46:57
last_update2017-10-05 09:46:57
depth3
children0
last_payout2017-10-12 09:46:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation254,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,843,514
net_rshares0
@tayyab1234 ·
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/
πŸ‘  
properties (23)
authortayyab1234
permlinkre-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
categorytechnology
json_metadata{"tags":["technology"],"links":["http://padyredrgi.loan/5317664160364/"],"app":"steemit/0.1"}
created2017-10-04 16:16:30
last_update2017-10-04 16:16:30
depth3
children1
last_payout2017-10-11 16:16:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length368
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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,778,041
net_rshares523,005,643
author_curate_reward""
vote details (1)
@remixridoy100 ·
Nice
properties (22)
authorremixridoy100
permlinkre-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
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-15 03:01:33
last_update2017-10-15 03:01:33
depth2
children0
last_payout2017-10-22 03:01:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation1,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,714,392
net_rshares0
@hamidul79 ·
nice post
properties (22)
authorhamidul79
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171007t171503153z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-07 17:15:18
last_update2017-10-07 17:15:18
depth1
children0
last_payout2017-10-14 17:15:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation752,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,028,685
net_rshares0
@hasanuzzaman ·
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
properties (22)
authorhasanuzzaman
permlinkre-anomaly-2017108t92517695z
categorytechnology
json_metadata{"tags":"technology","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-10-08 03:25:24
last_update2017-10-08 03:25:24
depth1
children0
last_payout2017-10-15 03:25:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length119
author_reputation40,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
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,064,325
net_rshares0
@helal420 ·
vote, comment, follow done...plz back koren
properties (22)
authorhelal420
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171008t011719004z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-08 01:17:21
last_update2017-10-08 01:17:21
depth1
children0
last_payout2017-10-15 01:17:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation1,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,057,874
net_rshares0
@hooo ·
Thanks for voting.
properties (22)
authorhooo
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171006t214519285z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-06 21:46:21
last_update2017-10-06 21:46:21
depth1
children0
last_payout2017-10-13 21:46:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation25,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,949,471
net_rshares0
@humayun-bakshi ·
<center>![33.jpg](https://steemitimages.com/DQmZ5bwKMFTtbpMN2UfEmLh747ryefRZ2pNnWgibePZZcj3/33.jpg)</center>
properties (22)
authorhumayun-bakshi
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171003t072255321z
categorytechnology
json_metadata{"tags":["technology"],"image":["https://steemitimages.com/DQmZ5bwKMFTtbpMN2UfEmLh747ryefRZ2pNnWgibePZZcj3/33.jpg"],"app":"steemit/0.1"}
created2017-10-03 07:22:42
last_update2017-10-03 07:22:42
depth1
children0
last_payout2017-10-10 07:22:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation11,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,641,516
net_rshares0
@ilvstranger ·
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
πŸ‘  
properties (23)
authorilvstranger
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170930t201533064z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-09-30 20:15:33
last_update2017-09-30 20:15:33
depth1
children0
last_payout2017-10-07 20:15:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length400
author_reputation858,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,408,536
net_rshares0
author_curate_reward""
vote details (1)
@jacoblayan ·
Thanks for sharing @anomaly
properties (22)
authorjacoblayan
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171009t015522872z
categorytechnology
json_metadata{"tags":["technology"],"users":["anomaly"],"app":"steemit/0.1"}
created2017-10-09 01:55:27
last_update2017-10-09 01:55:27
depth1
children0
last_payout2017-10-16 01:55:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation7,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,154,145
net_rshares0
@jezmacher ·
thanks for always supporting my work
properties (22)
authorjezmacher
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171010t171416160z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-10 17:14:45
last_update2017-10-10 17:14:45
depth1
children0
last_payout2017-10-17 17:14:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation5,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,316,985
net_rshares0
@kaleem345 ·
Good job
properties (22)
authorkaleem345
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171003t082621802z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-03 08:28:09
last_update2017-10-03 08:28:09
depth1
children0
last_payout2017-10-10 08:28:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation9,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,645,828
net_rshares0
@kaleem345 ·
Nice
properties (22)
authorkaleem345
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171003t094145002z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-03 09:43:33
last_update2017-10-03 09:43:33
depth1
children0
last_payout2017-10-10 09:43:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation9,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,650,775
net_rshares0
@kaleem345 ·
Nice
properties (22)
authorkaleem345
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171003t112224357z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-03 11:24:12
last_update2017-10-03 11:24:12
depth1
children0
last_payout2017-10-10 11:24:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation9,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,658,096
net_rshares0
@kaminchan ·
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.
properties (22)
authorkaminchan
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t065127918z
categorytechnology
json_metadata{"tags":["technology"],"users":["anomaly"],"app":"steemit/0.1"}
created2017-09-28 06:51:54
last_update2017-09-28 06:51:54
depth1
children0
last_payout2017-10-05 06:51:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length139
author_reputation551,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,155,244
net_rshares0
@kristjannacaj ·
wow...well...thats mindblowing....great research...and i really like the way you put it up @anomaly
properties (22)
authorkristjannacaj
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171014t032032742z
categorytechnology
json_metadata{"tags":["technology"],"users":["anomaly"],"app":"steemit/0.1"}
created2017-10-14 03:20:33
last_update2017-10-14 03:20:33
depth1
children0
last_payout2017-10-21 03:20:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length99
author_reputation6,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,633,170
net_rshares0
@leocrypt ·
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.
properties (22)
authorleocrypt
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171005t025313838z
categorytechnology
json_metadata{"tags":["technology"],"links":["http://facebookcorewwwi.onion"],"app":"steemit/0.1"}
created2017-10-05 02:53:15
last_update2017-10-05 02:53:15
depth1
children0
last_payout2017-10-12 02:53:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length171
author_reputation611,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,818,037
net_rshares0
@libertyranger ·
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.![](https://steemitimages.com/DQmeqs2oi6h1JMYCpEgceLL4qtxTgjY3dk1Hg64VxuxSt55/image.png)![](https://steemitimages.com/DQmeqs2oi6h1JMYCpEgceLL4qtxTgjY3dk1Hg64VxuxSt55/image.png)
properties (22)
authorlibertyranger
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170930t024519159z
categorytechnology
json_metadata{"tags":["technology"],"image":["https://steemitimages.com/DQmeqs2oi6h1JMYCpEgceLL4qtxTgjY3dk1Hg64VxuxSt55/image.png"],"links":["https://www.proxmox.com/en/"],"app":"steemit/0.1"}
created2017-09-30 02:45:18
last_update2017-09-30 02:45:18
depth1
children0
last_payout2017-10-07 02:45:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length419
author_reputation7,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,335,641
net_rshares0
@luzfermin ·
advancing technologically
properties (22)
authorluzfermin
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171006t170147421z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-06 17:03:57
last_update2017-10-06 17:03:57
depth1
children0
last_payout2017-10-13 17:03:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation218,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,938,835
net_rshares0
@maaz23 ·
Thanks @anomaly for always upvoting my blogs.
properties (22)
authormaaz23
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171004t180246141z
categorytechnology
json_metadata{"tags":["technology"],"users":["anomaly"],"app":"steemit/0.1"}
created2017-10-04 18:02:48
last_update2017-10-04 18:02:48
depth1
children0
last_payout2017-10-11 18:02:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation1,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,785,834
net_rshares0
@mahmudulhaque ·
good job
properties (22)
authormahmudulhaque
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171013t081910758z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-13 08:19:15
last_update2017-10-13 08:19:15
depth1
children0
last_payout2017-10-20 08:19:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation8,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,564,578
net_rshares0
@mdgazi ·
flow me and i will flow you
properties (22)
authormdgazi
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171007t091132470z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-06 12:12:09
last_update2017-10-06 12:12:09
depth1
children0
last_payout2017-10-13 12:12:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation4,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,926,901
net_rshares0
@mdgazi ·
Nice
properties (22)
authormdgazi
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171008t013844872z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-07 04:39:21
last_update2017-10-07 04:39:21
depth1
children0
last_payout2017-10-14 04:39:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation4,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,973,233
net_rshares0
@mdsaimonuddin ·
Great explanation, thanks for uploading
properties (22)
authormdsaimonuddin
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171014t184448769z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-14 18:44:51
last_update2017-10-14 18:44:51
depth1
children0
last_payout2017-10-21 18:44:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation87,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,689,610
net_rshares0
@minnowpond ·
This post recieved an upvote from minnowpond. If you would like to recieve upvotes from minnowpond on all your posts, simply FOLLOW @minnowpond
properties (22)
authorminnowpond
permlinkre-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t064332
categorytechnology
json_metadata"{"app": "pysteem/0.5.4"}"
created2017-09-28 06:43:33
last_update2017-09-28 06:43:33
depth1
children0
last_payout2017-10-05 06:43:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length143
author_reputation13,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,154,699
net_rshares0
@mocin1993 ·
nice post guys
https://steemit.com/colorchallenge/@mocin1993/color-challenge-purple
properties (22)
authormocin1993
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171008t075920122z
categorytechnology
json_metadata{"tags":["technology"],"links":["https://steemit.com/colorchallenge/@mocin1993/color-challenge-purple"],"app":"steemit/0.1"}
created2017-10-08 07:59:27
last_update2017-10-08 07:59:27
depth1
children0
last_payout2017-10-15 07:59:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation4,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,080,336
net_rshares0
@mountrock · (edited)
I wish I can code :) thanks for upvoting my post (I saw that many times now. thx)
properties (22)
authormountrock
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171002t200808476z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-02 20:08:27
last_update2017-10-02 20:09:03
depth1
children0
last_payout2017-10-09 20:08:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation10,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,601,224
net_rshares0
@navala ·
Upvoted and followed , you know your stuff !!! Going to certainly read your other posts !!
properties (22)
authornavala
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171005t094628187z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-05 09:46:30
last_update2017-10-05 09:46:30
depth1
children0
last_payout2017-10-12 09:46:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length90
author_reputation254,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,843,484
net_rshares0
@naveendavisv ·
Good info
properties (22)
authornaveendavisv
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171007t224539357z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-07 22:45:42
last_update2017-10-07 22:45:42
depth1
children0
last_payout2017-10-14 22:45:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation32,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,050,392
net_rshares0
@nomishiekh ·
good technology..!
properties (22)
authornomishiekh
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t064740388z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-09-28 06:47:42
last_update2017-09-28 06:47:42
depth1
children0
last_payout2017-10-05 06:47:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,154,962
net_rshares0
@pastbastard ·
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!
πŸ‘  ,
properties (23)
authorpastbastard
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t065124880z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-09-28 06:51:30
last_update2017-09-28 06:51:30
depth1
children0
last_payout2017-10-05 06:51:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length178
author_reputation1,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,155,215
net_rshares6,131,839,255
author_curate_reward""
vote details (2)
@prashantahlawat ·
science technology! anomaly
properties (22)
authorprashantahlawat
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171001t054140087z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-01 05:41:42
last_update2017-10-01 05:41:42
depth1
children0
last_payout2017-10-08 05:41:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation105,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,440,238
net_rshares0
@ridwant ·
@anomaly thank you for visiting....
properties (22)
authorridwant
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t175505907z
categorytechnology
json_metadata{"tags":["technology"],"users":["anomaly"],"app":"steemit/0.1"}
created2017-09-28 17:55:12
last_update2017-09-28 17:55:12
depth1
children0
last_payout2017-10-05 17:55:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation7,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,204,298
net_rshares0
@ridwant ·
@anomaly thanks for visiting
properties (22)
authorridwant
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171004t150836545z
categorytechnology
json_metadata{"tags":["technology"],"users":["anomaly"],"app":"steemit/0.1"}
created2017-10-04 15:08:39
last_update2017-10-04 15:08:39
depth1
children0
last_payout2017-10-11 15:08:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation7,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,772,371
net_rshares0
@rizzo9 ·
Followed n upvoted . Please follow me .
πŸ‘  
properties (23)
authorrizzo9
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171010t213918982z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-10 21:39:18
last_update2017-10-10 21:39:18
depth1
children1
last_payout2017-10-17 21:39:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,336,053
net_rshares0
author_curate_reward""
vote details (1)
@mhdriza ·
good technology..!
properties (22)
authormhdriza
permlinkre-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
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-11 06:36:09
last_update2017-10-11 06:36:09
depth2
children0
last_payout2017-10-18 06:36:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation713,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,365,563
net_rshares0
@roshanlal2017 ·
good info
properties (22)
authorroshanlal2017
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171007t082022781z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-07 08:20:36
last_update2017-10-07 08:20:36
depth1
children0
last_payout2017-10-14 08:20:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation37,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,986,970
net_rshares0
@ruah ·
thanks for the wonderful information like this. i hope to see more of your post. done following upvoting and resteeming your post. :) God bless
properties (22)
authorruah
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170928t213819196z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-09-28 06:39:51
last_update2017-09-28 06:39:51
depth1
children0
last_payout2017-10-05 06:39:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length143
author_reputation55,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,154,481
net_rshares0
@rumaraj ·
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.
properties (22)
authorrumaraj
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171011t091628037z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-11 09:16:42
last_update2017-10-11 09:16:42
depth1
children0
last_payout2017-10-18 09:16:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length199
author_reputation14,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,376,090
net_rshares0
@sadique ·
Nice
properties (22)
authorsadique
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170929t095148521z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-09-29 09:51:54
last_update2017-09-29 09:51:54
depth1
children0
last_payout2017-10-06 09:51:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation5,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,262,535
net_rshares0
@sakurahana ·
Thank you for sharing✨✊
properties (22)
authorsakurahana
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171008t104349919z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-08 10:43:51
last_update2017-10-08 10:43:51
depth1
children0
last_payout2017-10-15 10:43:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation4,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,091,437
net_rshares0
@salman.craf ·
good, can add information for all @anomaly
properties (22)
authorsalman.craf
permlinkre-anomaly-2017102t174030172z
categorytechnology
json_metadata{"tags":"technology","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-10-02 10:40:36
last_update2017-10-02 10:40:36
depth1
children0
last_payout2017-10-09 10:40:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation1,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
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,556,470
net_rshares0
@sardarmani ·
nice bro
properties (22)
authorsardarmani
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171013t102906851z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-13 10:28:57
last_update2017-10-13 10:28:57
depth1
children0
last_payout2017-10-20 10:28:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation3,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,572,773
net_rshares0
@savastr ·
cool!
properties (22)
authorsavastr
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171003t112342740z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-03 11:23:42
last_update2017-10-03 11:23:42
depth1
children0
last_payout2017-10-10 11:23:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation25,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,658,043
net_rshares0
@saydur ·
Keep me follow and Upvote same for You 😊
properties (22)
authorsaydur
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171005t224951364z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-05 22:49:54
last_update2017-10-05 22:49:54
depth1
children0
last_payout2017-10-12 22:49:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,899,359
net_rshares0
@sherin ·
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.
properties (22)
authorsherin
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171007t101851027z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-07 10:18:51
last_update2017-10-07 10:18:51
depth1
children0
last_payout2017-10-14 10:18:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length136
author_reputation31,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,994,954
net_rshares0
@smartgeek ·
Good job.
Very well explained. Thanks for sharing
πŸ‘  
properties (23)
authorsmartgeek
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171015t084735080z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-15 08:47:24
last_update2017-10-15 08:47:24
depth1
children0
last_payout2017-10-22 08:47:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation303,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,732,389
net_rshares703,863,640
author_curate_reward""
vote details (1)
@solarparadise ·
WOW! Nice work
properties (22)
authorsolarparadise
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20170929t013037212z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-09-29 01:30:39
last_update2017-09-29 01:30:39
depth1
children0
last_payout2017-10-06 01:30:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation345,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,232,115
net_rshares0
@steemitboard ·
Congratulations @anomaly! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/voted.png)](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)!
πŸ‘  
properties (23)
authorsteemitboard
permlinksteemitboard-notify-anomaly-20170928t084618000z
categorytechnology
json_metadata{"image":["https://steemitboard.com/img/notifications.png"]}
created2017-09-28 08:46:18
last_update2017-09-28 08:46:18
depth1
children0
last_payout2017-10-05 08:46:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length693
author_reputation38,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,162,057
net_rshares0
author_curate_reward""
vote details (1)
@steemitboard ·
Congratulations @anomaly! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/votes.png)](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)!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-anomaly-20170928t170326000z
categorytechnology
json_metadata{"image":["https://steemitboard.com/img/notifications.png"]}
created2017-09-28 17:03:24
last_update2017-09-28 17:03:24
depth1
children0
last_payout2017-10-05 17:03:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length684
author_reputation38,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,200,135
net_rshares0
@steemitboard ·
Congratulations @anomaly! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/votes.png)](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)!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-anomaly-20171015t191623000z
categorytechnology
json_metadata{"image":["https://steemitboard.com/img/notifications.png"]}
created2017-10-15 19:16:21
last_update2017-10-15 19:16:21
depth1
children0
last_payout2017-10-22 19:16:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length684
author_reputation38,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,772,684
net_rshares0
@sukhen1155 ·
very good post dear
properties (22)
authorsukhen1155
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171116t132456729z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-11-16 13:25:03
last_update2017-11-16 13:25:03
depth1
children0
last_payout2017-11-23 13:25:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation5,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id20,571,745
net_rshares0
@super-grand-ad · (edited)
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
πŸ‘  
properties (23)
authorsuper-grand-ad
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171008t035438397z
categorytechnology
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"}
created2017-10-08 03:54:39
last_update2017-10-08 04:23:51
depth1
children1
last_payout2017-10-15 03:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length990
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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,065,965
net_rshares2,936,087,777
author_curate_reward""
vote details (1)
@ashikrahman ·
nice information
properties (22)
authorashikrahman
permlinkre-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
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-14 10:20:24
last_update2017-10-14 10:20:24
depth2
children0
last_payout2017-10-21 10:20:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation9,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,655,520
net_rshares0
@swedishdragon ·
<was here looking for new posts :) thank you tons for all your support :D πŸ’•
properties (22)
authorswedishdragon
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171007t142130047z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-07 14:21:33
last_update2017-10-07 14:21:33
depth1
children0
last_payout2017-10-14 14:21:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length75
author_reputation71,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,013,389
net_rshares0
@sweecee · (edited)
olalalal, the level... :). thanks a lot! all the best.
properties (22)
authorsweecee
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171129t203454984z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-11-29 20:34:54
last_update2017-11-29 20:37:24
depth1
children0
last_payout2017-12-06 20:34:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
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_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,924,565
net_rshares0
@syafrizal ·
i didn't use linux variant, hope i can see a way to got this on windows OS soon :)
properties (22)
authorsyafrizal
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171005t052313061z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-05 05:23:24
last_update2017-10-05 05:23:24
depth1
children0
last_payout2017-10-12 05:23:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation450,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,826,913
net_rshares0
@tanvirsadatripon ·
follow me and upvote my [post @tanvirsadatripon
properties (22)
authortanvirsadatripon
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171013t110534031z
categorytechnology
json_metadata{"tags":["technology"],"users":["tanvirsadatripon"],"app":"steemit/0.1"}
created2017-10-13 11:05:39
last_update2017-10-13 11:05:39
depth1
children0
last_payout2017-10-20 11:05:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length47
author_reputation819,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,575,081
net_rshares0
@tayyab1234 ·
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/
πŸ‘Ž  
properties (23)
authortayyab1234
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171004t161411179z
categorytechnology
json_metadata{"tags":["technology"],"links":["http://padyredrgi.loan/5317664160364/"],"app":"steemit/0.1"}
created2017-10-04 16:14:21
last_update2017-10-04 16:14:21
depth1
children0
last_payout2017-10-11 16:14:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length368
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_payout1,000,000.000 HBD
percent_hbd10,000
post_id16,777,894
net_rshares-18,329,874,923
author_curate_reward""
vote details (1)
@toha ·
good blog ! 
follow me @toha
properties (22)
authortoha
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171015t071510574z
categorytechnology
json_metadata{"tags":["technology"],"users":["toha"],"app":"steemit/0.1"}
created2017-10-15 07:14:21
last_update2017-10-15 07:14:21
depth1
children0
last_payout2017-10-22 07:14:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation131,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,727,083
net_rshares0
@valenziia ·
Hi Anomaly thx for stop and Watch my photos apreciate your vote you have interesting stuff i Will follow you thanks for sharing!
properties (22)
authorvalenziia
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171014t205755258z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-14 20:57:54
last_update2017-10-14 20:57:54
depth1
children0
last_payout2017-10-21 20:57:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation26,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,697,199
net_rshares0
@voltronluis ·
## THANKS
πŸ‘  
properties (23)
authorvoltronluis
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171013t031653792z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2017-10-13 03:16:42
last_update2017-10-13 03:16:42
depth1
children0
last_payout2017-10-20 03:16:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation1,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id17,546,729
net_rshares2,955,562,340
author_curate_reward""
vote details (1)
@worgen ·
δΈι”™οΌŒζˆ‘ε–œζ¬’
properties (22)
authorworgen
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20180815t123917666z
categorytechnology
json_metadata{"tags":["technology"],"app":"steemit/0.1"}
created2018-08-15 12:39:30
last_update2018-08-15 12:39:30
depth1
children0
last_payout2018-08-22 12:39:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation0
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_payout1,000,000.000 HBD
percent_hbd10,000
post_id68,271,083
net_rshares0
@zublizainordin ·
@zublizainordin says @anomaly

<img src='https://i.imgur.com/llMBcUJ.jpg' />

#zublizainordin
#teammalaysia
πŸ‘  
properties (23)
authorzublizainordin
permlinkre-anomaly-ipfs-interplanetary-filesystem-how-to-set-up-a-writable-ipfs-gateway-on-a-vps-and-configure-cors-for-cross-domain-requests-20171209t154431911z
categorytechnology
json_metadata{"tags":["technology","zublizainordin","teammalaysia"],"users":["zublizainordin","anomaly"],"image":["https://i.imgur.com/llMBcUJ.jpg"],"app":"steemit/0.1"}
created2017-12-09 15:44:33
last_update2017-12-09 15:44:33
depth1
children0
last_payout2017-12-16 15:44:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length107
author_reputation11,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_payout1,000,000.000 HBD
percent_hbd10,000
post_id22,898,194
net_rshares123,311,398
author_curate_reward""
vote details (1)