Skip to content
/ zeronet Public

A shrinked (in size, not features) image to run ZeroNet

Notifications You must be signed in to change notification settings

rigelk/zeronet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Decentralized websites using Bitcoin crypto and the BitTorrent network - https://zeronet.io

Image features

  • Tor usage by default
  • smallest image possible (frankly if you can do better tell us!)
  • create/sign/publish CLI integration (see below)
  • optional variables: ENABLE_TOR and UIPASSWORD
$ docker build -t my/zeronet .
$ docker run -d \
  --name zeronet \
  -e "ENABLE_TOR=true" \
  -e "UIPASSWORD=yourpassword" \
  -v /var/lib/zeronet:/data \
  -p 127.0.0.1:43110:43110 \
  -p 127.0.0.1:15441:15441 \
  my/zeronet

Access via http://127.0.0.1:43110

Data can be backed up via:

$ docker run --rm \
  -v /var/lib/zeronet:/data:ro \
  -v $(pwd):/backup alpine tar cvf /backup/zeronetdata.tar /data
...or
$ tar cvf zeronetdata.tar /var/lib/zeronet

CLI integration

$ docker run -rm -v /var/lib/zeronet:/data my/zeronet create
...
- Generating new privatekey...
- ----------------------------------------------------------------------
- Site private key: 5KH7HEDj4p1cMKb32sVvENXJZqSweZ2JuPhRf3W5Gpdsu2jH51A
-                   !!! ^ Save it now, required to modify the site ^ !!!
- Site address:     1Nj1VBtjM31AYoV2Wy8CwQNGxsasvdEV6Q
- ----------------------------------------------------------------------
? Have you secured your private key? (yes, no) >
...
$ docker run -rm -v /var/lib/zeronet:/data my/zeronet sign 13DNDkMUExRf9Xa9ogwPKqp7zyHFEqbhC2
...
$ docker run -rm -v /var/lib/zeronet:/data my/zeronet publish 13DNDkMUExRf9Xa9ogwPKqp7zyHFEqbhC2

Zeronet Features

  • Real-time updated sites
  • Namecoin .bit domains support
  • Easy to setup: unpack & run
  • Clone websites in one click
  • Password-less BIP32 based authorization: Your account is protected by the same cryptography as your Bitcoin wallet
  • Built-in SQL server with P2P data synchronization: Allows easier site development and faster page load times
  • Anonymity: Full Tor network support with .onion hidden services instead of IPv4 addresses
  • TLS encrypted connections
  • Automatic uPnP port opening
  • Plugin for multiuser (openproxy) support
  • Works with any browser/OS

How does Zeronet work?

  • After starting zeronet.py you will be able to visit zeronet sites using http://127.0.0.1:43110/{zeronet_address} (eg. http://127.0.0.1:43110/1HeLLo4uzjaLetFx6NH3PMwFP3qbRbTf3D).
  • When you visit a new zeronet site, it tries to find peers using the BitTorrent network so it can download the site files (html, css, js...) from them.
  • Each visited site is also served by you.
  • Every site contains a content.json file which holds all other files in a sha512 hash and a signature generated using the site's private key.
  • If the site owner (who has the private key for the site address) modifies the site, then he/she signs the new content.json and publishes it to the peers. Afterwards, the peers verify the content.json integrity (using the signature), they download the modified files and publish the new content to other peers.

Default docker image (not this one)

  • docker run -d -v <local_data_folder>:/root/data -p 15441:15441 -p 127.0.0.1:43110:43110 nofish/zeronet
  • This Docker image includes the Tor proxy, which is disabled by default. Beware that some hosting providers may not allow you running Tor in their servers. If you want to enable it, set ENABLE_TOR environment variable to true (Default: false). E.g.:

docker run -d -e "ENABLE_TOR=true" -v <local_data_folder>:/root/data -p 15441:15441 -p 127.0.0.1:43110:43110 nofish/zeronet

Current limitations

  • No torrent-like file splitting for big file support
  • more anonymous than Bittorrent (built-in full Tor support added)
  • File transactions are not compressed or encrypted yet (TLS encryption added)
  • No private sites

How can I create a ZeroNet site?

Shut down zeronet if you are running it already

$ zeronet.py siteCreate
...
- Site private key: 23DKQpzxhbVBrAtvLEc2uvk7DZweh4qL3fn3jpM3LgHDczMK2TtYUq
- Site address: 13DNDkMUExRf9Xa9ogwPKqp7zyHFEqbhC2
...
- Site created!
$ zeronet.py
...

Congratulations, you're finished! Now anyone can access your site using http://localhost:43110/13DNDkMUExRf9Xa9ogwPKqp7zyHFEqbhC2

Next steps: ZeroNet Developer Documentation

How can I modify a ZeroNet site?

  • Modify files located in data/13DNDkMUExRf9Xa9ogwPKqp7zyHFEqbhC2 directory. After you're finished:
$ zeronet.py siteSign 13DNDkMUExRf9Xa9ogwPKqp7zyHFEqbhC2
- Signing site: 13DNDkMUExRf9Xa9ogwPKqp7zyHFEqbhC2...
Private key (input hidden):
  • Enter the private key you got when you created the site, then:
$ zeronet.py sitePublish 13DNDkMUExRf9Xa9ogwPKqp7zyHFEqbhC2
...
Site:13DNDk..bhC2 Publishing to 3/10 peers...
Site:13DNDk..bhC2 Successfuly published to 3 peers
- Serving files....
  • That's it! You've successfully signed and published your modifications.

Help keep this project alive

Thank you!

About

A shrinked (in size, not features) image to run ZeroNet

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages