Anon 04/15/2024 (Mon) 19:04 No.10198 del
(202.65 KB 547x600 1397200413275.png)
(26.76 KB 284x436 1397209354580.jpg)
(509.74 KB 576x694 1397182409338.png)
>>10089
>magnet:?xt=urn:btih:79760b305316b095d30e7bdfa49b97d49f236618&dn=heinessen-mlp-images.tar
I'm making a copy of an extracted version of that.

>>10176
>Local Apache IPFS Server / Apache IPFS Gateway in a 32-bit computer
Mount /ipfs doesn't work as noted here -- github.com/ipfs/kubo/issues/10264 -- but mount /ipns does work. Symlink /var/www/html/ipns to /ipns ("ln -s target linkname"). Can't update IPNS if it's mounted:
>$ ipfs daemon --mount & disown
>[...]$ ls /ipns
>12D3Koo...Q1v local
>$ ls /ipns/12D3Koo...Q1v/
>[...]$ ipfs name publish bafybeiha6cx7hutdkaybanqlxwlgmw2wjdhqw6gzlme54rxk6xj4v47xu4
>Error: cannot manually publish while IPNS is mounted
>$ # later published this to ipns, which is a set of pins in HPC: /ipfs/QmZTJUUrDsmPjyAVy8dxRkH7VBVCVQihJ7ccRQoUb4kouZ
Problem: http://10.1.2.3/ipns = "403 Forbidden" due to Apache not being allowed access to root-owned folders, and when ipfs is mounted, it makes those folders root-owned in an unchangeable way. Trying to make Apache only run as root (not a great idea):
>$ sudo apt install apache2; sudo vim /etc/apache2/envvars
>[... change to "export APACHE_RUN_USER=root" and "export APACHE_RUN_GROUP=root" where root was previously www-data]

Message too long. Click here to view full text.