Installation¶
Primary supported platforms¶
- Debian Bookworm
- Ubuntu 22.04 LTS
Main requirements¶
Onionspray requires recent tor
and also recent openresty
with the
ngx_http_substitutions_filter_module NGINX module
enabled1. They simply need to be accessible in the
$PATH
environment variable.
The following "build" scripts simply supply that by building these software from sources, but if you prefer you can use the ones provided by packages, or build yourself.
This guide also assumes that you have familiarity with Unix-like systems, especialy when using a command line interface, and that you have access to such systems.
Optional requirements¶
Onionspray have optional requirements, depending on what you want to do:
- Onionbalance needs to installed and available in your
$PATH
environmente variable if you want to use softmaps. It may be already available as a package in your distribution and be automatically installed by some of the provided build/installation scripts below, so we recommend you to check that after the installation procedure.
Preparation¶
You main want to add the onionspray
folder into your $PATH
, so you can
invoke Onionspray anywhere:
export PATH=$PATH:/path/to/onionspray
This way, you can invoke onionspray
by simply typing
onionspray
Instead of
./onionspray
Or instead of invoking by it's full path name, such as
/path/tonionspray/onionspray
Per-platform installation¶
Onionspray is installed directly from it's repository.
Building from sources
All installations are currently being built from fresh sources for reasons of development and keeping up to date with core, evolving features. As such, installations make take extensive time to build, especially on slower machines.
Check issue tpo/onion-services/onionspray#33 for details.
Keeping the source code
By default, the Onionspray build procedures will cleanup all dependencies' source code after compilation.
Use the --keep-sources
flag on the build scripts to preserve the sources,
which can be helpful for debugging, testing and other tinkering. Builds
running a second time with this flag tends to complete faster.
Debian 12 (bookworm)¶
In a Debian bookworm instance:
sudo apt update
sudo apt install -y git
git clone https://gitlab.torproject.org/tpo/onion-services/onionspray.git
cd onionspray
./opt/build-debian-bookworm.sh
There's also a install-debian-bookworm.sh script which uses Tor and OpenResty upstream packages, but this procedure is not entirelly supported right now due to a dependency on an externa NGINX module1.
Debian 11 (bullseye)¶
In a Debian bullseye instance:
sudo apt update
sudo apt install -y git
git clone https://gitlab.torproject.org/tpo/onion-services/onionspray.git
cd onionspray
./opt/build-debian-bookworm.sh
Ubuntu 24.04LTS (noble)¶
Install a ubuntu-24.04.2-live-server-amd64.iso
server instance; and then:
sudo apt update
sudo apt-get install -y git
git clone https://gitlab.torproject.org/tpo/onion-services/onionspray.git
cd onionspray
./opt/build-ubuntu-noble.sh
Ubuntu 22.04LTS (jammy)¶
Install a ubuntu-22.04.2-live-server-amd64.iso
server instance; and then:
sudo apt update
sudo apt-get install -y git
git clone https://gitlab.torproject.org/tpo/onion-services/onionspray.git
cd onionspray
./opt/build-ubuntu-jammy.sh
There's also a install-ubuntu-22.04.sh script which uses Tor and OpenResty upstream packages, but this procedure is not entirelly supported right now due to a dependency on an externa NGINX module1.
Ubuntu 20.04LTS (focal)¶
Install a ubuntu-20.04.2-live-server-amd64.iso
server instance; and then:
sudo apt update
sudo apt-get install -y git
git clone https://gitlab.torproject.org/tpo/onion-services/onionspray.git
cd onionspray
./opt/build-ubuntu-focal.sh
Ubuntu 18.04LTS (bionic)¶
Install a ubuntu-18.04.2-live-server-amd64.iso
server instance; and then:
sudo apt update
sudo apt-get install -y git
git clone https://gitlab.torproject.org/tpo/onion-services/onionspray.git
cd onionspray
./opt/build-ubuntu-bionic.sh
Raspbian 9 (stretch)¶
sudo apt-get install -y git
git clone https://gitlab.torproject.org/tpo/onion-services/onionspray.git
cd onionspray
./opt/build-raspbian-stretch.sh
CentOS 8.2.2004¶
Install a minimal server and then:
sudo yum -y install git
git clone https://gitlab.torproject.org/tpo/onion-services/onionspray.git
cd onionspray
./opt/build-centos-8.2.2004.sh
FreeBSD 12.1¶
Install a base server and then:
pkg install git
git clone https://gitlab.torproject.org/tpo/onion-services/onionspray.git
cd onionspray
./opt/build-freebsd-12.1.sh
macOS 10.15 (Catalina)¶
Install Homebrew; and then:
git clone https://gitlab.torproject.org/tpo/onion-services/onionspray.git
cd onionspray
./opt/build-macos-catalina.sh
macOS 10.14 (Mojave)¶
Install Homebrew; and then:
git clone https://gitlab.torproject.org/tpo/onion-services/onionspray.git
cd onionspray
./opt/build-macos-mojave.sh
Notes¶
-
As of January 2024, the ngx_http_substitutions_filter_module dependency means Onionspray won't work with the official OpenResty packages. Newer Onionspray versions might come without this dependency and fully support upstream packages, relying only on the native OpenResty substitution filters. ↩↩↩