DevOps
Everything about DevOps tools and methods.
Everything about DevOps tools and methods.
Follow the provided commands to install ntopng on your system
apt-get install software-properties-common wget
add-apt-repository universe
wget https://packages.ntop.org/apt-stable/xx.yy/all/apt-ntop-stable.deb
apt install ./apt-ntop-stable.deb
Before to install make sure to edit /etc/apt/sources.list and add “contrib” at the end of each line that begins with deb and deb-src.
codename
could be bullseye, bookworm or buster.
wget https://packages.ntop.org/apt-stable/<codename>/all/apt-ntop-stable.deb
apt install ./apt-ntop-stable.deb
Note that ntopng must not be installed together with nedge. Remove ntopng before installing nedge.
nTopNG
apt-get clean all
apt-get update
apt-get install pfring-dkms ntopng pfring-drivers-zc-dkms
nEdge
apt-get install nedge
path is /etc/ntopng/ntopng.conf
# The configuration file is similar to the command line, with the exception that an equal
# sign '=' must be used between key and value. Example: -i=p1p2 or --interface=p1p2 For
# options with no value (e.g. -v) the equal is also necessary. Example: "-v=" must be used.
#
#
# -G|--pid-path
# Specifies the path where the PID (process ID) is saved. This option is ignored when
# ntopng is controlled with systemd (e.g., service ntopng start).
#
-G=/var/run/ntopng.pid
#
# -e|--daemon
# This parameter causes ntop to become a daemon, i.e. a task which runs in the background
# without connection to a specific terminal. To use ntop other than as a casual monitoring
# tool, you probably will want to use this option. This option is ignored when ntopng is
# controlled with systemd (e.g., service ntopng start)
#
# -e=
#
# -i|--interface
# Specifies the network interface or collector endpoint to be used by ntopng for network
# monitoring. On Unix you can specify both the interface name (e.g. lo) or the numeric
# interface id as shown by ntopng -h. On Windows you must use the interface number instead.
# Note that you can specify -i multiple times in order to instruct ntopng to create multi-
# ple interfaces.
#
# -i=eth1
# -i=eth2
#
# -w|--http-port
# Sets the HTTP port of the embedded web server.
#
-w=3002
#
# -m|--local-networks
# ntopng determines the ip addresses and netmasks for each active interface. Any traffic on
# those networks is considered local. This parameter allows the user to define additional
# networks and subnetworks whose traffic is also considered local in ntopng reports. All
# other hosts are considered remote. If not specified the default is set to 192.168.1.0/24.
#
# Commas separate multiple network values. Both netmask and CIDR notation may be used,
# even mixed together, for instance "131.114.21.0/24,10.0.0.0/255.0.0.0".
#
# -m=10.10.123.0/24,10.10.124.0/24
#
# -n|--dns-mode
# Sets the DNS address resolution mode: 0 - Decode DNS responses and resolve only local
# (-m) numeric IPs 1 - Decode DNS responses and resolve all numeric IPs 2 - Decode DNS
# responses and don't resolve numeric IPs 3 - Don't decode DNS responses and don't resolve
#
# -n=1
#
# -S|--sticky-hosts
# ntopng periodically purges idle hosts. With this option you can modify this behaviour by
# telling ntopng not to purge the hosts specified by -S. This parameter requires an argu-
# ment that can be "all" (Keep all hosts in memory), "local" (Keep only local hosts),
# "remote" (Keep only remote hosts), "none" (Flush hosts when idle).
#
# -S=
#
# -d|--data-dir
# Specifies the data directory (it must be writable by the user that is executing ntopng).
#
# -d=/var/lib/ntopng
#
# -q|--disable-autologout
# Disable web interface logout for inactivity.
#
# -q=
#
# Define nDPI custom protocols
#
#--ndpi-protocols=/etc/ntopng/custom_protocols.txt
# Use prefix due to nginx proxy
#--http-prefix="/ntopng"
# Everybody's admin
#--disable-login=1
# Do not resolve any names
--dns-mode=3
# Limit memory usage
--max-num-flows=10000
--max-num-hosts=10000
--community
sudo docker run --privileged --restart=always -d -p 3002:3000 --net=host ntop/ntopng_arm64.dev:latest -i eth0
FreshRSS is a self-hosted RSS and Atom feed aggregator. It is lightweight, easy to work with, powerful, and customizable.
Install Docker and Docker-Compose based on the digitalocean guides on your linux server.
version: "2.4"
services:
freshrss-db:
image: postgres:17
container_name: freshrss-db
hostname: freshrss-db
restart: unless-stopped
logging:
options:
max-size: 10m
volumes:
- ./db/:/var/lib/postgresql/data
environment:
POSTGRES_DB: ${DB_BASE}
POSTGRES_USER: ${DB_USER}
POSTGRES_PASSWORD: ${DB_PASSWORD}
command:
# Examples of PostgreSQL tuning.
# https://wiki.postgresql.org/wiki/Tuning_Your_PostgreSQL_Server
# When in doubt, skip and stick to default PostgreSQL settings.
- -c
- shared_buffers=1GB
- -c
- work_mem=32MB
freshrss:
image: freshrss/freshrss:latest
# Optional build section if you want to build the image locally:
# build:
# Pick #latest (stable release) or #edge (rolling release) or a specific release like #1.21.0
# context: https://github.com/FreshRSS/FreshRSS.git#latest
# dockerfile: Docker/Dockerfile-Alpine
container_name: freshrss
hostname: freshrss
restart: unless-stopped
depends_on:
- freshrss-db
logging:
options:
max-size: 10m
volumes:
- ./data/:/var/www/FreshRSS/data/
- ./extensions/:/var/www/FreshRSS/extensions/
# - config.custom.php:/var/www/FreshRSS/data/config.custom.php
# - config-user.custom.php:/var/www/FreshRSS/data/config-user.custom.php
ports:
- "127.0.0.1:80:80"
environment:
TZ: Asia/Tehran
CRON_MIN: '3,33'
FRESHRSS_INSTALL: |-
--api-enabled
--base-url ${BASE_URL}
--db-base ${DB_BASE}
--db-host ${DB_HOST}
--db-password ${DB_PASSWORD}
--db-type pgsql
--db-user ${DB_USER}
--default_user admin
--language en
--allow-anonymous
--allow-robots
FRESHRSS_USER: |-
--api-password ${ADMIN_API_PASSWORD}
--email ${ADMIN_EMAIL}
--language en
--password ${ADMIN_PASSWORD}
--user admin
If you want to expose your service for others use reverse-proxy like Nginx with TLS to prevent from being compromised.
A curated list of amazingly Free and Open-Source sysadmin resources.
Build automation.
Apache-2.0
Java
Apache-2.0
Java
Apache-2.0
Java
Apache-2.0
Ruby
GPL-3.0
C
Apache-2.0
Groovy/Java
MIT
Ruby
Backup software.
MIT
C
GPL-2.0
Shell
GPL-3.0
Perl
AGPL-3.0
C++/C
GPL-3.0
Python
BSD-3-Clause
Python
AGPL-3.0
C
GPL-2.0
C++
LGPL-2.1
C#
GPL-2.0
Python
GPL-3.0
Rust
MIT
Go
GPL-2.0
Python
BSD-2-Clause
Go
GPL-2.0
Perl
MIT
Go
AGPL-3.0
C/C++
Build and software organization tools.
GPL-2.0
Python
GPL-2.0
Tcl
MIT
Lua
MIT/Apache-2.0
Python
Conversation-driven development and management.
_See also: /r/chatops*
GPL-2.0
C
GPL-3.0
Python
MIT
Nodejs
Configuration management (CM) is a systems engineering process for establishing and maintaining consistency of a product’s performance, functional, and physical attributes with its requirements, design, and operational information throughout its life.
GPL-3.0
Python
GPL-3.0
C
Apache-2.0
Ruby
Apache-2.0
Ruby/C
GPL-3.0
Scala
Apache-2.0
Python
Configuration management database (CMDB) software.
Apache-2.0
Docker/Scala
AGPL-3.0
PHP
AGPL-3.0
PHP
Apache-2.0
Python
Continuous integration/deployment software.
GPL-2.0
Python
BSD-3-Clause
Go
Apache-2.0
Go
Apache-2.0
Go
MIT
Ruby
MIT
Ruby
Apache-2.0
Java/Ruby
MIT
Java
GPL-3.0
C++
BSD-2-Clause
PHP
BSD-2-Clause
PHP
MIT
Nodejs
Apache-2.0
Go
Apache-2.0
Go
Web hosting and server or service control panels.
MIT
Python/Shell
LGPL-2.1
C
GPL-2.0
PHP
GPL-3.0
PHP/Shell/Other
BSD-3-Clause
PHP
GPL-3.0
PHP
GPL-3.0
Shell/Perl/Other
BSD-3-Clause
Perl
Tools and scripts to support deployments to your servers.
MIT
Ruby
Apache-2.0
Java
Apache-2.0
Java/Python
GPL-2.0
Python
BSD-2-Clause
Python
MIT
Perl
Apache-2.0
Python
MIT
Nodejs
Tools used to create diagrams of networks, flows, etc.
Apache-2.0
JavaScript/Docker
MIT
Java
MIT
Nodejs/Docker
Network distributed filesystems.
See also: awesome-selfhosted/File Transfer - Object Storage & File Servers
LGPL-3.0
C++
GPL-2.0
C
GPL-2.0/LGPL-3.0
C
Apache-2.0
Java
Apache-2.0
Go
Apache-2.0/MIT
Go
Apache-2.0
Erlang
GPL-2.0
C
AGPL-3.0
Go
GPL-2.0
C
IPL-1.0
C
Apache-2.0
Python
Apache-2.0
C
GPL-2.0
Python
BSD-3-Clause
Java
DNS server control panels, web interfaces and domain management tools.
Related: DNS - Servers
See also: awesome-selfhosted/DNS
ISC
Perl
Apache-2.0
Python
MIT
Go/Docker
GPL-3.0
PHP
BSD-3-Clause
Python
MIT
Python
GPL-3.0
PHP
MIT
PHP
DNS servers.
Related: DNS - Control Panels & Domain Management
See also: awesome-selfhosted/DNS
MPL-2.0
C
Apache-2.0
Go
CC0-1.0
C
GPL-2.0
C
GPL-3.0
C
BSD-3-Clause
C
GPL-2.0
C++
BSD-3-Clause
C
BSD-3-Clause
C
Open-source code editors.
MIT
JavaScript
MIT
JavaScript
EPL-1.0
Java
GPL-2.0
C/C++
GPL-3.0
C
GPL-3.0
JavaScript
MIT
PHP
MIT
Nodejs
GFDL-1.2
C++
MIT
Go
GPL-3.0
C
GPL-2.0
C++
GPL-3.0
C++
Vim
C
MIT
TypeScript
Lightweight Directory Access Protocol (LDAP) is an open, vendor-neutral, industry standard application protocol for accessing and maintaining distributed directory information services over an Internet Protocol (IP) network.
GPL-3.0
C
Apache-2.0
Java
GPL-3.0
Python/C/JavaScript
GPL-2.0
C
GPL-3.0
Rust
OLDAP-2.8
C
Single sign-on (SSO) is an authentication scheme that allows a user to log in with a single ID to any of several related, yet independent, software systems.
Apache-2.0
Go
MIT
Python
Apache-2.0
Java
Miscellaneous utilities and web interfaces for identity management systems.
Apache-2.0
Python
GPL-2.0
Shell
GPL-2.0
PHP
GPL-3.0
PHP
AGPL-3.0
Python
Apache-2.0
Docker/Go
GPL-3.0
C
Apache-2.0
Go
Apache-2.0
Go/Docker/K8S
IT asset management software.
GPL-3.0
PHP
GPL-2.0
PHP/Perl
GPL-3.0/AGPL-3.0
OVF/Python
GPL-2.0
PHP
Apache-2.0
Python/Docker
AGPL-3.0
PHP
Log management tools: collect, parse, visualize…
Apache-2.0
Ruby
Apache-2.0
Java
MIT
C
AGPL-3.0
Go
GPL-3.0
C
An email client, email reader or, more formally, message user agent (MUA) or mail user agent is a computer program used to access and manage a user’s email.
MIT
Go
GPL-3.0
C
NLPL
Perl
GPL-2.0
C
GPL-2.0
C
MPL-2.0
C/C++
Metric gathering and display software.
Related: Databases, Monitoring
Apache-2.0
Go
MIT
C
MIT
Python
AGPL-3.0
Go
Apache-2.0
Python
GPL-2.0
C
MIT
Nodejs
LGPL-3.0/GPL-3.0
Python
MIT
Go
Software that does not fit in another section.
Apache-2.0
C#/PowerShell
GPL-2.0
Perl/Shell/Other
GPL-2.0
Perl
GPL-3.0
PHP/Shell
AGPL-3.0
PHP
Monitoring software.
Related: Metrics & Metric Collection
AGPL-3.0
Docker/Python
Apache-2.0
Python
GPL-3.0
Perl
MIT
Go
GPL-2.0
PHP
Apache-2.0
Go
GPL-2.0
Python/PHP
MIT
Nodejs/Docker
MIT
Java
GPL-3.0
PHP/Shell
GPL-3.0
Python
BSD-3-Clause
Python
GPL-2.0
C++
GPL-3.0
PHP
MIT
Nodejs/Go/Python/PHP
AGPL-3.0
C
GPL-2.0
Perl/Shell
GPL-2.0
C
GPL-2.0
C
GPL-3.0
C
LGPL-3.0/GPL-3.0
Java/C++/C
QPL-1.0
PHP
GPL-3.0
deb/Docker
LGPL-2.1/GPL-2.0
C
GPL-3.0
PHP
GPL-2.0
PHP
Apache-2.0
Go
EPL-1.0
Java
MIT
Go
AGPL-3.0
Shell
MIT
Go
MIT
Go
MIT
Python
GPL-1.0
Perl
GPL-2.0
C
GPL-2.0
C
Network configuration management tools.
GPL-3.0
Python
GPL-3.0
Python
Apache-2.0
Ruby
GPL-3.0
PHP
BSD-3-Clause
Perl/Shell
GPL-3.0
PHP
Platform-as-a-Service software allows customers to provision, instantiate, run, and manage a computing platform and one or more applications, without the complexity of building and maintaining the infrastructure typically associated with developing and launching the application. Also includes Serverless computing and Function-as-a-service (FaaS) software.
Apache-2.0
Docker/Nodejs
Apache-2.0
Docker
MIT
Docker/Shell/Go/deb
MIT
Go
GPL-3.0
K8S/Nodejs/Go
Apache-2.0
Python/Docker/K8S
MIT
Docker/Nodejs/Go
MIT
Go
BSD-3-Clause
Go/Rust/Docker
MIT
Go/deb/Docker
A package manager or package-management system is a collection of software tools that automates the process of installing, upgrading, configuring, and removing computer programs for a computer in a consistent manner.
MIT
Go
MIT
Ruby
Apache-2.0
Ruby
GPL-2.0
Python
Message queues and message broker software, typically used for inter-process communication (IPC), or for inter-thread communication within the same process.
See also: Cloud Native Landscape - Streaming & Messaging
Apache-2.0
Java
MIT
C
BSD-3-Clause
C++
MPL-2.0
Go
GPL-3.0
C++
Remote Desktop client software.
See also: awesome-selfhosted/Remote Access
GPL-2.0
C
GPL-2.0
C++
GPL-2.0
Perl
Software for management of router hardware.
GPL-2.0
C
GPL-2.0
C
BSD-2-Clause
C/PHP
Apache-2.0
Shell/PHP/Other
Service discovery is the process of automatically detecting devices and services on a computer network.
MPL-2.0
Go
Apache-2.0
Go
Apache-2.0
Java/C++
Operating system–level virtualization.
Apache-2.0
Go
Apache-2.0
Go
Apache-2.0
Go
GPL-2.0
C
Apache-2.0
Go
GPL-2.0
C
alias docker=podman
. (Source Code) Apache-2.0
Go
Zlib
Go
GPL-2.0
C
Troubleshooting tools.
GPL-3.0
Shell
MIT
Python
GPL-2.0
C
Apache-2.0
Docker/Lua/C
GPL-2.0
C
Software versioning and revision control.
GPL-2.0
Haskell
BSD-2-Clause
C
GPL-2.0
C
GPL-2.0
Python/C/Rust
Apache-2.0
C
Virtualization software.
BSD-2-Clause
Python/Haskell
GPL-2.0/LGPL-2.0
C
Apache-2.0
C++
Apache-2.0
Java
MPL-2.0
Go
GPL-2.0
Perl/Shell
LGPL-2.1
C
BUSL-1.1
Ruby
GPL-3.0/CDDL-1.0
C++
GPL-2.0
C
GPL-2.0
C
VPN software.
Apache-2.0
Rust
GPL-2.0
Docker
Apache-2.0
Docker
MIT
docker
BSD-3-Clause
Go
MIT
Go
GPL-2.0
C
GPL-2.0
C
Apache-2.0
C
LGPL-2.1
Python
GPL-2.0
C
GPL-2.0
C
AGPL-3.0
- GNU Affero General Public License 3.0Apache-2.0
- Apache, Version 2.0BSD-2-Clause
- BSD 2-clause “Simplified”BSD-3-Clause
- BSD 3-Clause “New” or “Revised”BUSL-1.1
- Business Source License 1.1CC0-1.0
- Public Domain/Creative Common Zero 1.0CDDL-1.0
- Common Development and Distribution License 1.0EPL-1.0
- Eclipse Public License 1.0GFDL-1.2
- GNU Free Documentation License 1.2GPL-1.0
- GNU General Public License 1.0GPL-2.0
- GNU General Public License 2.0GPL-3.0
- GNU General Public License 3.0IPL-1.0
- IBM Public License v1.0ISC
- ISC LicenseLGPL-2.0
- GNU Lesser General Public License v2LGPL-2.1
- GNU Lesser General Public License v2.1LGPL-3.0
- GNU Lesser General Public License v3MIT
- MIT LicenseMPL-2.0
- Mozilla Public LicenseNLPL
- No Limit Public LicenseOLDAP-2.8
- Open LDAP Public License v2.8QPL-1.0
- Q Public License 1.0Vim
- Vim LicenseZlib
- zlib LicenseSoftware package repositories.
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International license.
Make sure to include server and company locations. If they use BitPay or Coinbase please flag this. Additional notes (what level of anonymity is allowed at signup, whether they offer block storage / are suited to running Bitcoin full nodes, etc) are welcome. Particularly interested in hosts that take Lightning payments and hosts in exotic locations. Yes, you can request listing for a company you own or work for, we love to hear from providers.
Using BitPay, Coinbase or using providers that require it is discouraged: many readers have complained BitPay requires a separate account and extensive personal information from the customer in order to pay for services from BitPay-using merchants. Coinbase has recently changed their service and will require the same as BitPay.
Due to draconian new laws being pushed worldwide, I STRONGLY recommend hosting providers move to self-hosted payment processing (e.g BTCPayServer). We have a suggestions for hosting providers page with more information on this for payment providers, along with some other tips.
Initech - Locations: Melbourne (AU), Sydney (AU), Belgium (BE), Sao Paulo (BR), Montreal (CA), Toronto (CA), Santiago (CL), Hong Kong (CN), Helsinki (FI), Finland (FI), Paris (FR), Berlin (DE), Falkenstein (DE), Frankfurt (DE), Nuremberg (DE), Bangalore (IN), Delhi (IN), Mumbai (IN), Jakarta (ID), Ireland (IE), Tel Aviv (IL), Milan (IT), Turnin (IT), Osaka (JP), Tokyo (JP), Kuala Lumpur (MY), Mexico City (MX), Amsterdam (NL), Holland (NL), Manila (PH), Warsaw (PL), Doha (QA), Singapore (SG), Johannesburg (ZA), Seoul (KR), Madrid (ES), Stockholm (SE), Dubai (AE), London (UK), Manchester (UK), Atlanta (US), Chicago (US), Columbus (US), Dallas (US), Honolulu (US), Iowa (US), Las Vegas (US), Los Angeles (US), Miami (US), New York (US), Ohio (US), Oregon (US), Salt Lake City (US), San Francisco (US), Seattle (US), Silicon Valley (US), South Carolina (US), Virginia (US), Zurich (CH), Taiwan (TW). Company registered in United States. Also offers a residential proxy (VPN) service with endpoints available in almost every country worldwide (the residential proxy service blocks websites that are common abuse targets, like banking or Netflix. Their VPS service does not block). Resells VPS services from many cloud providers (Vultr, Alibaba Cloud, Amazon Lightsail/AWS, DigitalOcean, Google Cloud/GCP, Hetzner Cloud). No email verification required to order. Accept all major cryptocurrencies. Tor traffic is OK, their website is built to be easy to use over Tor. Accepts crypto payments via Plisio and BTCPayServer, including Bitcoin Lightning Network (LN) payments via BTCPayServer. Large Storage / Block storage 40GB up to 40TB now available via normal ordering flow. Use promo code BITCOINVPS for 10% discount on all orders for new customers.
Njalla - Locations: Sweden (SE). Company registered in Nevis. Runs their own datacenter. Tor- and anonymity-friendly. Privacy-focused domain registration service that also offers VPS, VPN. Accepts BTC, XMR, ZEC among other options. Onion URL: http://njallalafimoej5i4eg7vlnqjvmb6zhdh27qxcatdn647jtwwwui3nad.onion
Hostiko - Locations: Kyiv (UA), Falkenstein (DE), Warsaw (PL). Company registered in Ukraine. Accepts BTC, XMR, many others via NOWPayments (no KYC and numerous altcoins). Anonymous sign-up/signup via Tor is allowed. They actively monitor their network for abuse and react accordingly.
Private WebHost - Locations: Vienna (AT), Helsinki (FI), Frankfurt (DE), Netherlands (NL), Moscow (RU), Stockholm (SE), Zurich (CH), Paris (FR), Los Angeles (US). Company registered in Switzerland. Privacy/anonymity-focused hoster. Only an email required at signup, Signup via VPNs, proxies, and Tor allowed, payments via NOWPayments, CoinPayments.net. Lightning Network (LN) payments via CoinPayments. Working on self/hosted payments. The Swiss dedicated servers are Large Storage and suitable for Bitcoin full nodes. All servers can be used for Tor nodes (exit nodes allowed if you block port 25). Netherlands VPS servers are Large Storage. No Google Captcha. Support via tickets or encrypted email. Dedicated servers in Switzerland, working on more locations. Use promo code BITCOINVPS for 10% off. Very responsive support.
Profvds - Locations: Bratislava (SK). Company registered in Slovakia. Accepts Bitcoin via BTCPayServer, NOWPayments, Plisio, and Payeer. Only Email required to register. Provider notes they support running Bitcoin full nodes
Opera VPS - Locations: London (UK), Frankfurt (DE) , Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Montreal (CA), Amsterdam (NL), Paris (FR), Tokyo (JP). Company registered in US (Washington state). Anonymous signup OK, Tor allowed, Lightning Network (LN) payments via Jeeb
VPSBG - Locations: Sofia (BG). Company registered in Bulgaria. Locations: Sofia (BG). Company registered in Bulgaria. Anonymous signup OK, Tor allowed. No 3rd party payment processor, has own implementation to take payments via Bitcoin, Litecoin and Lightning Network (LN). Advertises high performance servers. Provider notes: “VPN servers are installed on a private VPS. They have a dedicated static IP, full SSH root access to the VPS, allowing for full control over the VPN. Verifiable no-logs and privacy policies. Unlimited device connections. VPN uses open-source protocols and custom scripts that are used are publicly available.”
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
PrivateAlps - Locations: Switzerland (CH). Company registered in Panama. Networking provided by Ipconnect (Seychelles). Tor traffic and anonymous signup OK. No LN payment. 10% discount if you enter the affiliate 5DBKR when ordering
VSYS - Locations: Ukraine (UA), Netherlands (NL). Company registered in Kyiv, Ukraine. Anonymous signup and Tor traffic OK. States they use Bitcoin Core to process BTC payments directly, LTC and Doge via their billing software.
HostZealot - Locations: Amsterdam (NL), London (UK), Stockholm (SE), Warsaw (PL), Limassol (CY), Tallinn (EE), Ashburn (US), Chicago (US), Dallas (US), Seattle (US), Toronto (CA), Brussels (BE), Tel Aviv (IL), Hong Kong (HK), Dusseldorf (DE), Tbilisi (GE). Company registered in Bulgaria. Provider states they are Tor and anonymity friendly as long as you do not violate their ToS. All their VPS instances use SSDs, their Poland and Netherlands locations offer NVMe also. User reports they do not allow registration from Protonmail email addresses.
Rockhoster - Locations: US, Canada (CA), France (FR). Company registered in UK.
RackNerd - Locations: Los Angeles (US), Utah (US), Dallas (US), New York (US), New Jersey (US), Seattle (US), Montreal (CA), London (UK), Amsterdam (NL), Chicago (US), San Jose (US), Atlanta (US), Tampa (US), Ashburn (US), Strasbourg (FR), Frankfurt (DE), Singapore (SG). Company registered in United States. Accepts BTC, LTC, ETH, ZEC. No Lightning Network. User reports good service and responsive support. User reports they use Coinbase Commerce
BlueVPS - Locations: Amsterdam (NL), Limassol (CY), Gravelines (FR), Singapore (SG), Sofiya (BG), London (UK), Ashburn (US), Los Angeles (US), Atlanta (US), Frankfurt (DE), Palermo (IT), Tel Aviv (IL), Stockholm (SE), Toronto (CA), Tallinn (EE), Madrid (ES), Hong Kong (CN), Warsaw (PL), Sydney (AU), Fujairah (UAE). Company registered in Estonia. Payments via Coinpayments. Regarding anonymity they state “We require clients confirmation e-Mail or ID”. Provider has hardware in two different data centers at their Warsaw and London locations.
3v-hosting - Locations: Ukraine (UA). Company registered in Ukraine. Tor traffic allowed unless backbone provider objects. User data required at signup (not anonymous)
VPS2day - Locations: Frankfurt a.M (DE), Zug/Switzerland (CH), Tallin (EE), Bucharest (RO), The Hague (NL), Stockholm (SE), Manchester (UK), Dallas (US). Company registered in Frankfurt, Germany. Website blocks Tor traffic outright. Does not allow anonymous signup. Payment via Coingate.
Eldernode - Locations: Chicago (US), San Jose (US), New York (US), Denmark (DK), Netherlands (NL), Manchester (UK), France (FR), Germany (DE), Canada. Company registered in Lithuania .
Shock Hosting - Locations: Piscataway/New Jersey (US), Los Angeles (US), Chicago (US), Dallas (US), Jacksonville (US), Denver (US), Seattle (US), Maidenhead (UK), Amsterdam (NL), Sydney (AU), Tokyo (JP), Singapore (SG). Company registered in United States.
Cinfu - Locations: Germany (DE), Bulgaria (BG), France (FR), Netherlands (NL), US. Company registered in Seychelles. Anonymous signup discouraged (automated fraud checks). No signup over Tor (website currently blocks Tor users entirely). User reports their datacentres may de-prioritise Bitcoin related traffic (and/or other large data transfers) resulting in extremely long full node sync times (weeks, single kbps bandwidth) after an initial burst for about 15% of the BTC blockchain
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
LegionBox - Locations: US, Switzerland (CH), Germany (DE), Russia (RU). Company registered in Australia. Anonymous signup discouraged (automated fraud checks)
THC Servers - Locations: Romania (RO), Canada. Company registered in United States. Supports Lightning Network (LN)
ServerMath - Locations: Amsterdam (NL), Hong Kong (HK), Madrid (ES), Seoul (KR), Dallas (TX), Istanbul (TR), Manila (PH), Singapore (SG), Dubai (AE), Lagos (NG), Miami (US), Tokyo (JP), Frankfurt (DE), London (UK), Moscow (RU), Warsaw (PL). Company registered in ???. Accepts Bitcoin via BTCPayServer. Willing to consider payment via other cryptocurrencies on request. Does not require KYC or check identity. Happy to arrange custom server configurations (e.g GPUs, high bandwidth servers). Affiliated with RatioServer. Website does not work when visited from some IP addresses
FlokiNET - Locations: Romania (RO), Iceland (IS), Finland (FI), Netherlands (NL). Company registered in Iceland. Free speech-focused service, Tor friendly. Includes (potentially outdated) OpenBSD images which must be manually installed via VNC. Anonymous signup OK, only valid email address is required. Accepts Bitcoin and XMR via Coinpayments. Allows customizing dedicated servers, including with Large Storage suitable for full nodes. This website is currently hosted on Flokinet
SeedVPS - Locations: Netherlands (NL). Company registered in US/Israel. Google captchas. Automated fraud detection system may cancel your order or even ban your account, we recommend against using VPN/Tor/proxies to order from this provider. User reports that their website is unusable over Tor: you are constantly logged out, and have to solve a captcha every time you click anything on their website
ExtraVM - Locations: Dallas TX (US), Los Angeles CA (US), Miami FL (US), Vint Hill VA (US), Montreal QC (CAN), London (UK), Gravelines (FR), Sydney (AU), Singapore (SG), Tokyo (JP). Company registered in Delaware, US. Ryzen servers. Crypto payments via Cryptomus. DdoS protected. Also offers Minecraft servers.
Qhoster - Locations: UK, US, Canada (CA), Bulgaria (BG), Lithuania (LT), France (FR), Germany (DE), Netherlands (NL), Switzerland (CH). Company registered in ???. Google captcha
SporeStack - Locations: San Francisco/NYC (US), Toronto (CA), London (UK), Amsterdam (NL), Frankfurt (DE), Singapore (SG), Bangalore (IN). Company registered in Texas (US). Accountless VPS provider. Also takes Bcash / Bitcoin SV. API-only/no registration, servers on Digital Ocean, Vultur/Linode available on request, Tor-only servers in undisclosed location, onion service URL: http://spore64i5sofqlfz5gq2ju4msgzojjwifls7rok2cti624zyq3fcelad.onion/#ref=vps
GlobalDataServer - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), Montreal (CA), New York (US), Seattle (US), Vancouver (CA), Washington DC (US), Amsterdam (NL), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Frankfurt (DE), London (UK), Madrid (ES), Milan (IT), Moscow (RU), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Vienna (AT), Vilnius (LT), Warsaw (PL), Zurich (CH), Bursa (TR), Hong Kong (HK), Singapore (SG), Tokyo (JP), Sydney (AU), Johannesburg (ZA). Company registered in Las Vegas (US). Dedicated servers in 100+ locations. Has high bandwidth 20GBps dedicated servers and can do custom configuration. Tor friendly. Contact them directly to arrange BTC payment. User reports they are likely connected to AllServerHost. Use code BITCOINVPS for a 10% discount on first order
NiceVPS - Locations: Netherlands (NL). Company registered in Dominica. Minimal registration data and Tor friendly. Bulletproof DDoS-protected hosting available. Also provides confidential domains. Will offer hosting in Switzerland (CH) soon.
BlazingFast - Locations: Netherlands (NL). Company registered in Netherlands. High performance servers
ThunderVM - Locations: Germany (DE), United States (US), Iceland (IS), Switzerland (CH), Netherlands (NL), France (FR), Italy (IT), United Kingdom (UK), Lithuania (LT), Poland (PL). Company registered in italy. Ok with hosting full nodes and Tor relays, but not Tor exit nodes, or (on VPS) mining cryptocurrency. Uses hCaptcha. Provider states that all their servers/hypervisors are installed and encrypted by them for user security. Uses BTCPayServer and self-hosted Monero (XMR) payments. Accepts Lightning Network (LN) payments via NowPayments
Cockbox - Locations: Romania (RO). Company registered in Seychelles. Servers with cocks. Tor and anonymity-friendly. Onion URL: http://dwtqmjzvn2c6z2x462mmbd34ugjjrodowtul4jfbkexjuttzaqzcjyad.onion/?r=3033
Ahost - Locations: Dubai (AE), Vienna (AT), Sydney (AU), Brussels (BE), Sofia (BG), Zurich (CH), Prague (CZ), Copenhagen (DK), Seville (ES), Thessaloniki (GR), Kwai Chung (HK), Zagreb (HR), Budapest (HU), Tel Aviv (IL), Hafnarfjordur (IS), Milan (IT), Tokyo (JP), Vilnius (LT), Riga (LV), Chisinau (MD), Skopje (MK), Oslo (NO), Warsaw (PL), Belgrade (RS), Bucharest (RO), Moscow (RU), Stockholm (SE), Ljubljana (SI). Company registered in Estonia. No anonymous signup. No Tor or spam allowed. Payments via Payeer. KVM virtualization, Gigabit speeds for every VPS. They do NOT want anonymous signups or Tor traffic. User reports they ask for KYC (scan of government ID) after payment. Google Captchas
AtomicNetworks - Locations: Eygelshoven (NL), Chicago (US), Miami (US), Los Angeles (US). Company registered in Delware, United States. Crypto payments through Coinbase Wallets, samller altcoins via NowPayments. Tor traffic OK. Uses Google Captchas. Asks for personal information but you can write whatever you like.
AlexHost - Locations: Tallbert (SE), Moldova (MD), Sofia (BG), Netherlands (NL). Company registered in Moldova. Email hosting included with shared web hosting service. Operates through AS200019, with own datacenter, network and hardware in the Republic of Moldova. Domain registration via OpenSRS/Tucows. They welcome people using their VPS for VPN endpoints. No KYC unless the payment gateway (e.g Paypal) asks for it (so pay with crypto). Doesn’t verify the personal data you give them otherwise. Tor bridges and relays are fine, Tor exit nodes are not allowed. Bitcoin payments accepted via BTCPayServer. Monero and other cryptocurrencies also accepted. May use Google Captchas (via Hostbill). Dedicated servers can be customized so they have Large Storage for running full nodes. Provider states they support freedom of speech and privacy.
HostStage - Locations: France (FR), Canada (CA), US. Company registered in France. Uses Coingate. Also provides shared web hosting. Anonymous sign up OK as long as no fraud, Tor traffic OK provided it is not used in a way that causes trouble
Justhost - Locations: Russia (RU). Company registered in Russia. Selling VDS
Lunanode - Locations: Canada (CA), France (FR). Company registered in Canada. User reports that registration is not allowed when using a VPN. Another user reports that their VPN worked, but LunaNode required phone number verification to pay with Bitcoin and/or Lightning Network (LN).
Skhron - Locations: Warsaw (PL). Company registered in Estonia. Equipment located at Equinix WA3. Bitcoin, Monero (XMR), TRX, USDT/TRC20, LTC accepted using self-hosted BTCPayServer (BTC) and BitCartCC (other coins). Lightning Network (LN) payments supported. Tor traffic allowed. Only a valid email is required, they don’t check other user-provided personal info unless you pay with fiat. No KYC and no error prone fraud protection to cancel your order unexpectedly. Captchas are standard pictures or hCaptcha. Offers a low-end KVM VPS for 1.15 EUR/month. Onion service at http://ufcmgzuawelktlvqaypyj4efjonbzleoketixdmtzidvfg254gfwyuqd.onion/
IP-Connect - Locations: Ukraine (UA). Company registered in Ukraine. Runs their own datacenter. Tor-friendly. Minimal registration. Crypto payments accepted via payment gateway. Doesn’t require KYC, allows TOR/proxy. Criminal activity prohibited. All VPS are KVM-based, 100% SSD, recent Intel processors, redundant high quality uplinks, lowest latency possible, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random generators for fast entropy, noVNC, images of common Linux distributions for fully automated installation, bring your own .iso (also Windows etc. allowed). Now additionally accepts payments via Nowpayments.io, which supports hundreds of different cryptocurrencies. Use promocode “bitcoin-vps2022” for -10% discount
FlyNet - Locations: Tomsk/Russia (RU). Company registered in Russia. May require SMS verification. Use coupon code FLYNET-PRO-180784 for 10% discount.
SeiMaxim - Locations: Almere (NL), Amsterdam (NL), Los Angeles (US). Company registered in Netherlands. Anonymous signup allowed. Bitcoin full nodes are allowed. Also offers GPU mining servers, domains, shared hosting, and HTTP/SOCKS proxies. Uses Coinbase payment gateway
ForexVPS - Locations: New York (US), London (UK), Manchester (UK), Zurich (CH), Amsterdam (NL), Frankfurt (DE), Singapore (SG), Tokyo (JP). Company registered in Hong Kong. Lightning Network (LN) payment support
Internoc24 - Locations: Czech Republic (CZ), Sweden (SE), UK, Finland (FI), Russia (RU). Company registered in US/CZ. Offers both OpenVZ and KVM. Advertises anonymous signup
VPSGOD - Locations: Germany (DE), US, France (FR), Netherlands (NL), United States (US). Company registered in US. Google captcha
BuyVM / Frantech - Locations: Las Vegas (US), New Jersey (US), Luxembourg (LU), Miami (US). Company registered in Canada. Supports Anycast IP addressing
Noez - Locations: Frankfurt (DE). Company registered in Germany. Large Storage, may be suitable for running Bitcoin full nodes
XetHost - Locations: Budapest (HU). Company registered in Hungary. DevOps-focused. Accepts many different cryptocurrencies via CoinGate. Asks for phone number and email address.
Host4Coins - Locations: France (FR), Zurich (CH). Company registered in France(?). Only Bitcoin and Lightning Network (LN) payments. Anonymous signup encouraged (they do not verify email address validity). $2/mo discount for IPv6-only service. Run by https://twitter.com/ketominer
Servting - Locations: Netherlands (NL), India (IN), Germany (DE), London (UK), United States (US), Singapore (SG), Canada (CA), South Korea (KR), Australia (AU), Japan (JP), Ireland (IE), France (FR), Sweden (SE), Spain (ES), Mexico (MX), Brazil (BR), Poland (PL). Company registered in United States. Currently reselling Digital Ocean, AWS Lightsail and Vultr. BTCPayServer as payment gateway. Encourage anonymous sign-up. Provider notes: “TOR and VPNs allowed, we do not use any fraud detection software such as Maxmind. A real email address is encouraged for correspondence but not a requirement . We offer block storage upgrades upon request. We do not check identities or perform any verification, if payment is successful you get a server!”
MrVM - Locations: Sweden (SE). Company registered in Sweden. No Tor traffic allowed
LiteServer - Locations: Netherlands (NL). Company registered in Netherlands. Accepts Lightning Network (LN) payments via Coingate. Large Storage (as of writing, 512GB for 5€/mo!), may be suitable for running full nodes
RamNode - Locations: Seattle/Los Angeles/Atlanta/NYC (US), Netherlands (NL). Company registered in US. Pay-by-the-hour model. User reports they require phone number verification
VPSServer - Locations: San Francisco/Chicago/Dallas/Miami/NYC (US), Toronto (CA), London (UK), Amsterdam (NL), Frankfurt (DE), Bangalore (IN), Tokyo (JP), Hong Kong (HK), Singapore (SG), Sydney (AU). Company registered in US. Uses BitPay. Reader reports they are Tor hostile: “I can’t join or use SSH to connect to their VPSs over Tor. No relays allowed (and most certainly no exits).” See: https://www.vpsserver.com/community/questions/7/i-want-tot-use-tor-network-is-it-allowed/
HostSailor - Locations: Romania (RO), Netherlands (NL). Company registered in UAE. Lightning network (LN) via Coingate. Google Captchas. User reports they log you out constantly if using Tor.
LowEndSpirit - Locations: Rotterdam (NL), London (UK), Milan (IT), Phoenix/Kansas/Lenoir NC (US), Tokyo (JP), Falkenstein (DE), Sofia (BG), Sandefjord (NO), Reims (FR), Perth/Sydney (AU), Singapore. Company registered in ???. Now a directory site / forum for low cost hosting.
OrangeWebsite - Locations: Iceland (IS). Company registered in Iceland. Asks for very minimal user information, seems to take security seriously
VPSBit - Locations: Hong Kong (HK), Lithuania (LT). Company registered in Hong Kong & Lithuania.
BitLaunch - Locations: DigitalOcean, Vultr, Linode, Netherlands (NL), United States (US), United Kingdom (UK). Company registered in Unknown. Cryptocurrency payment front-end to Digital Ocean/Vultr/Linode. User reprts they also run their own infrastructure with their own ASN
Coin.Host / Coinshost - Locations: Zurich (CH). Company registered in Switzerland. Does not provide anonymous hosting, will ask for detailed information about what you are hosting on their servers. Will not refund any deposits made prior to this. We recommend clarifying your proposed usage with them before depositing money with them.
Hostkey - Locations: US, Netherlands (NL), Russia (RU). Company registered in Netherlands. User reports they do not allow registration from Protonmail email addresses
Crowncloud - Locations: Frankfurt (DE), Los Angeles (US). Company registered in Australia.
Hostwinds - Locations: US, Netherlands (NL). Company registered in US.
CryptoHO.ST - Locations: Romania (RO). Company registered in Romania (?). Supports Lightning Network (LN), Monero, and 300+ altcoins
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
SuperBitHost - Locations: Bulgaria (BG), Germany (DE), Netherlands (NL), Luxembourg (LU), Malaysia (MY) Russia (RU), Singapore (SG), Switzerland (CH). Company registered in ???. uses Google captchas
Aurologic (Fastpipe) - Locations: Combahton datacenter in Frankfurt, Germany (DE). Company registered in Germany. Large Storage / Block storage offered, may be suitable for running Bitcoin full nodes. Used to be Fastpipe.io, is now Aurologic. If they still take Bitcoin, let us know:
Sered - Locations: Madrid (ES), Barcelona (ES). Company registered in Spain. Website may block Tor users (Google captcha). Use coupon code VQSZANRO for a 2 month discount.
Javapipe (now Mochahost) - Locations: Chicago (US), Amsterdan (NL), Bucharest (RO). Company registered in ???.
Evolution Host - Locations: Strasbourg (FR), Sydney (AU), Frankfurt (DE), Montreal (CA), London (UK), Dallas (US), Oregon (US), Virginia (US), Warsaw (PL). Company registered in ???. Supports Lightning Network (LN). User reports they have started blocking proxy/Tor signups for smaller packages due to abuse
Vultr - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Seattle (US), Silicon Valley (US), Toronto (CA), Amsterdam (NL), Frankfurt (DE), London (UK), Paris (FR), Tokyo (JP), Singapore (SG), Sydney (AU). Company registered in US. Reader reports strong anti-privacy policies: users must make credit card or PayPal payment before they are allowed to make Bitcoin deposits, and they use BitPay (which requires government ID/etc). Reader recommends using a Vultr reseller (e.g Bithost)
xitheon - Locations: Quebec (CA), Frankfurt (DE), Sydney (AU), Warsaw (PL), France (FR), Singapore (SG), UK. Company registered in ???.
Hostens - Locations: London (UK), Frankfurt (DE), Lithuania (LT), Amsterdam (NL), Washington (US), San Fransisco (US), Singapore (SG). Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Requires full KYC (govt ID/etc) on signup, may use BitPay
Hosthatch - Locations: Stockholm (SE), Los Angeles (US), Chicago (US), Amsterdam (NL). Company registered in US. Large Storage, may be suitable for running Bitcoin full nodes
Serverhub - Locations: Chicago (US), Seattle (US), New York (US), Dallas (US), Phoneix (US), Frankfurt (DE). Company registered in US. Large Storage, may be suitable for running Bitcoin full nodes
DeinServerHost - Locations: Combahton datacenter in Frankfurt, Germany (DE). Company registered in Germany. Bitcoin & Lightning Network (LN) via Coingate, anonymous/pseudonymous signup over Tor allowed. Very flexible server configuration (set RAM/disk/# cores independently). Large Storage, may be suitable for running Bitcoin full nodes. Offers one-click DdoS protection via Path.net
Terrahost - Locations: Sandefjord (NO). Company registered in Norway. Runs their own datacenter. Good reputation in the OpenBSD community (but does not offer OpenBSD support natively, you must bring your own install image). Their website claims to use BitPay but it’s not true, they actually use Coingate/BTCPayServer. Sometimes asks for full KYC at signup (e.g if you signed up via Tor)
ClientVPS - Locations: Bahrain (BH), Ukraine (UA), Netherlands (NL), Panama (PA), Russia (RU), Singapore (SG), Hong Kong (HK), Iran (IR). Company registered in Russia or US, it’s unclear. “Bulletproof” hosting provider.
Time4VPS - Locations: Lithuania (LT), Singapore (SG), US. Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Now requiring KYC (ID scans)
1984Hosting - Locations: Iceland (IS). Company registered in Iceland. Anonymous signup allowed. Accepts BTC & XMR via their own implementation. Also offers share & managed hosting, domain registration
Privex - Locations: Sweden (SE), Netherlands (NL), Germany (DE), Finland (FI), United States (US), Japan (JP), Canada (CA). Company registered in Belize. Owns their own hardware and network at their SE / NL regions. Resells Hetzner in DE / FI. Resells Dacentec+Reliablesite in US. Resells Vultr in JP/CA. Privacy focused, anonymous/pseudonymous sign up encouraged. No captchas/cloudflare/analytics. Payments processed by their own in-house solution. Allows hosting Tor exit nodes / public VPNs in SE/NL locations and Tor/I2P relays in all locations except JP/CA. Runs their own Tor nodes to support the network. Ordering is possible with JavaScript disabled. Supports Bring-Your-Own-IP and colocation in SE/NL. Very flexible and willing to consider special requests. Onion service: http://privex3guvvasyer6pxz2fqcgy56auvw5egkir6ykwpptferdcb5toad.onion/ and I2P service: http://privex.i2p/
AnyColo - Locations: Romania (RO). Company registered in Romania. Accepts BTC, XMR. Payments via own BTCPayServer instance. Anonymous signup allowed. According to the company, “our TOS is simple: no abuse and no complaints.”
RatioServer - Locations: Amsterdam (NL), Budapest (HU), Copenhagen (DK), Dallas (US), Dublin (IE), Frankfurt (DE), London (UK), Los Angeles (US), Madrid (ES), Miami (US), Montreal (CA), New York (US), Paris (FR), Prague (CZ), Rome (IT), Singapore (SG), Sofia (BG), Sydney (AU), Tokyo (JP), Zurich (CH) and more. Company registered in ???. Most locations have unmetered dedicated servers and custom-built server options available. Tor- and anonymity-friendly. Does not verify email address validity, but encourages people to sign up with a working email address. Uses their own in-house BTC/ETH payment processor
CryptoVPS - Locations: Hetzner/Germany (DE), Hetzner/Finland (FI), Hetzner (US), Ecatel/Netherlands (NL), Norway (NO), Gcorelabs/Luxembourg (LU). Company registered in ???. Anonymity friendly, their TOS promises they will never ask for KYC. Payments via CoinPayments, other gateways available.
Aaroli - Locations: Amsterdam (NL), Atlanta (US), Frankfurt (DE), London (UK), Paris (FR), Singapore (SG), Sydney (AU), Tokyo (JP), Toronto (CA). Company registered in an undisclosed location. Large Storage offered in 5 locations, may be suitable for full nodes. Payment via BTCPayServer or manual payment (accepts BTC, ETH). Willing to do custom configurations or payment via alternate methods. Anonymous/pseudonymous signup OK, provided you provide a working email address.
IQHost - Locations: Poland (PL)?. Company registered in Poland. Only Polish-language website
DataClub - Locations: Meppel/Netherlands (NL), Stockholm (SE), Riga/Latvia (LV). Company registered in Belize/Cyprus/UK. Dedicated servers in Latvia. May require KYC
Hostiquette - Locations: Amsterdam (NL), Frankfurt (DE), Helsinki (FI), London (UK), Moscow (RU), Paris (FR), Zurich (CH). Company registered in ???. Tor and anonymity-friendly. Using BTCPay Server for Bitcoin payments. Can accept other cryptocurrencies if you contact them. Emai addresses are not verified but using a valid email is recommended for communications. Custom servers are available if you contact them.
VPSAG - Locations: Bulgaria (BG). Company registered in Cyprus. Payments via Coinify. Sister company of DediStart (dedicated servers). Blocks Tor users
eCompute - Locations: Romania (RO). Company registered in Romania. Payments via Coinify. Website appears not to use HTTPS
Servers.Guru - Locations: Helsinki (FI), Nuremberg (DE), Falkenstein (DE), Ashburn (US). Company registered in United States. Anonymous signup allowed (only a valid email address is required). Tor traffic OK. Accepts Lightning Network (LN) payments. Uses self-hosted BitCartCC for Bitcoin payments (as well as others), takes DOGE, DASH, and Zcash/ZEC via Plisio.
Ukrainian Data Network (UDN) - Locations: Kyiv/Kiev (UA). Company registered in Ukraine. Anonymous signup OK, even email address is optional. Accepts BTC and Monero/XMR. Uses their own internal payment system, no 3rd party payment processor
VPS One - Locations: Netherlands (NL). Company registered in UAE. Anonymous signup allowed (only a valid email address is required). Uses CoinPayments.
Zergrush Hosting - Locations: Bucharest (RO). Company registered in Romania. Payments via uTrust, which supports Lightning Network (LN) payments. No Tor exits allowed. Do ask for personal information at signup.
IncogNET - Locations: Netherlands (NL), Idaho (US). Company registered in Wyoming, United States. Accepts Bitcoin via BTCPayServer (and other cryptocurrencies also). No personal information required to sign up, only an email address (which isn’t verified). Ordering via Tor/VPN is OK. Large Storage available on a case-by-case basis, contact them to arrange it. Uses Google Captchas (reCaptcha). Also does anonymous domain registration
SafeAlps - Locations: Switzerland (CH) (shared hosting only), Romania (RO), United States (US), Iceland (IS) (email hosting only). Company registered in Switzerland. VPS in Romania and the US, shared hosting in Switzerland, one-time-payment email hosting in Iceland. Tor-friendly, both traffic and nodes are welcome. Anonymous sign up is OK, PGP encrypted email communication is supported. Payments via Plisio, Lightning Network (LN) payment supported. No captchas or assets loaded from servers they don’t control. Large Storage servers with HDDs (or SSDs on request) are available.
HostSlick - Locations: Netherlands (NL). Company registered in Germany. Accepts Bitcoin via Coinify. Has internal KYC checks - your server can be suspended if you registered via Proxy/VPN. Google captchas. User reports you may be able to register via VPN if you open a support ticket to manually deposit BTC. We recommend testing with small amounts of money and low cost services first.
Webconn Technology - Locations: Netherlands (NL), United States (US), Italy (IT), Japan (JP), France (FR). Company registered in Pakistan. Offers GPU servers. Unlimited traffic. They don’t care what information you provide at signup. Payments via Coinbase or direct transfer to wallet. Google captchas. Linked to Seimaxim
Melbicom - Locations: Riga (LV), Amsterdam (NL), Warsaw (PL), Moscow (RU), Palermo (IT), Vilnius (LT), Madrid (ES), Sofia (BG), Lagos (NG), Singapore (SG), Fujairah (AE), Atlanta (US), Los Angeles (US). Company registered in Lithuania. Windows and Linux VPS. Also offers CDN services. No Tor traffic allowed. They don’t ask for much personal information but don’t want anonymous signup, they may request ID verification. No illegal activities allowed. Bitcoin Lightning network (LN) payments supported. No Google Captchas. Large Storage servers are available. They support BGP sessions, colocations, and cloud services also.
RDP.sh - Locations: Netherlands (NL), Phoneix (US), Poland (PL). Company registered in Germany. Privacy focused Windows RDP and Linux server provider. Only asks for email, no KYC. Accepts Bitcoin via Coinbase gateway.
AnonRDP - Locations: Poland (PL), France (FR). Company registered in Unknown. Anonymous signup allowed, only email address is required. Tor traffic is OK, but requires javascipt due to DdoS protection. Payments via Cryptomus. Accepts XMR, BTC, ETH, TRX, USDT, LTC, and more. Uses Google Captcha now, will soon have a self-hosted non-Javascript solution.
Fort.pw - Locations: Frankfurt am Main (DE). Company registered in Austria. Offers Large Storage servers with HDD, and NVMe boot disks. Very anonymity friendly, even offers an anonymous Web chat where you can contact them. Only requires an email to sign up, a forwarding or temp email is OK. Happy to host crypto nodes or backups. Accepts BTC, XMR, LTC, BCH, Bitcoin Lightning Network (LN) payments using their own in-house payment system. For some transactions they may use 3rd party no-KYC providers. Servers are in Equinix datacenter in Frankfurt, Germany. Free 3.2Tbit DdoS protection and backup slots. No automated fraud checks, no captchas, no cookies. Tor exit nodes not allowed due to all the abuse complaints they generate.
KernelHost - Locations: Frankfurt (DE). Company registered in Austria. Bitcoin payments via BTCPayServer. KVM based servers. Servers at Maincubes datacenter
NetNexus - Locations: Virginia (US), Ohio (US), California (US), Oregon (US), Mumbai (IN), Osaka (JP), Seoul (KR), Singapore (SG), Sydney (AU), Tokyo (JP), Central (CA), Frankfurt (DE), Ireland (IE), London (GB), Paris (FR), Stockholm (SE), Sao Paulo (BR). Company registered in Portland, Oregon. Tor traffic allowed. Asks for email address, name, phone number, etc on signup but doesn’t verify the information. Bitcoin payment with Plisio. No Google Captchas. Large Storage, maybe suitable for full nodes.
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
SnowCore - Locations: Amsterdam (NL), Salt Lake City (US). Company registered in ???. Uses a Mullvad-style token login system so they don’t collect any personal information at all. Payments via NOWpayments. Cloudflare captchas. Dedicated servers available with 1TB SSDs for 30 EUR one time payment in some locations, might be useful as Large Storage servers for full nodes. Tor is allowed and fully supported.
Gigablits - Locations: Amsterdam (NL), Bangalore (IN), Frankfurt (DE), London (UK), New York (US), San Francisco (US), Singapore (SG), Sydney (AU), Toronto (CA). Company registered in ???. DigitalOcean reseller. Anonymity focused, no personal information required. Payments accepted via Plisio. User reports they took payment but did not deliver service or respond to tickets, business may be defunct.
VPSBroker - Locations: Amsterdam (NL), Atlanta (US), Bangalore (IN), Chicago (US), Dallas (US), Delhi NCR (IN), Frankfurt (DE), Honolulu (US), Johannesburg (ZA), London (UK), Los Angeles (US), Madrid (ES), Manchester (UK), Melbourne (AU), Mexico City (MX), Miami (US), Mumbai (IN), New York (US), Osaka (JP), Paris (FR), Santiago (CL), São Paulo (BR), Seattle (US), Silicon Valley (US), Singapore (SG), Stockholm (SE), Sydney (AU), Tel Aviv (IL), Tokyo (JP), Toronto (CA), Warsaw (PL), Seoul (KR). Company registered in ???. Signup over Tor ok, user reports no captchas or Maxmind/KYC. Accepts Bitcoin, Monero (XMR), and others. User reports the UI is really good. Disk space available up to 160GB.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
BrilliantHost - Locations: Washington, D.C. (US), California (US), Iowa (US), Toronto (CA), London (GB), Amsterdam (NL), Warsaw (PL), Paris (FR), Frankfurt (DE), Milan (IT), Vienna (AT), Sydney (AU), Hong Kong (HK), Stockholm (SE), Dubai (AE), São Paulo (BR). Company registered in Wyoming, United States. Tor traffic OK. No Google Captchas. Very privacy-and anonymity friendly, only an email is required. Processes crypto payments manually via their support team. Advertises high performance at low prices.
Initech - Locations: Melbourne (AU), Sydney (AU), Belgium (BE), Sao Paulo (BR), Montreal (CA), Toronto (CA), Santiago (CL), Hong Kong (CN), Helsinki (FI), Finland (FI), Paris (FR), Berlin (DE), Falkenstein (DE), Frankfurt (DE), Nuremberg (DE), Bangalore (IN), Delhi (IN), Mumbai (IN), Jakarta (ID), Ireland (IE), Tel Aviv (IL), Milan (IT), Turnin (IT), Osaka (JP), Tokyo (JP), Kuala Lumpur (MY), Mexico City (MX), Amsterdam (NL), Holland (NL), Manila (PH), Warsaw (PL), Doha (QA), Singapore (SG), Johannesburg (ZA), Seoul (KR), Madrid (ES), Stockholm (SE), Dubai (AE), London (UK), Manchester (UK), Atlanta (US), Chicago (US), Columbus (US), Dallas (US), Honolulu (US), Iowa (US), Las Vegas (US), Los Angeles (US), Miami (US), New York (US), Ohio (US), Oregon (US), Salt Lake City (US), San Francisco (US), Seattle (US), Silicon Valley (US), South Carolina (US), Virginia (US), Zurich (CH), Taiwan (TW). Company registered in United States. Also offers a residential proxy (VPN) service with endpoints available in almost every country worldwide (the residential proxy service blocks websites that are common abuse targets, like banking or Netflix. Their VPS service does not block). Resells VPS services from many cloud providers (Vultr, Alibaba Cloud, Amazon Lightsail/AWS, DigitalOcean, Google Cloud/GCP, Hetzner Cloud). No email verification required to order. Accept all major cryptocurrencies. Tor traffic is OK, their website is built to be easy to use over Tor. Accepts crypto payments via Plisio and BTCPayServer, including Bitcoin Lightning Network (LN) payments via BTCPayServer. Large Storage / Block storage 40GB up to 40TB now available via normal ordering flow. Use promo code BITCOINVPS for 10% discount on all orders for new customers.
Private WebHost - Locations: Vienna (AT), Helsinki (FI), Frankfurt (DE), Netherlands (NL), Moscow (RU), Stockholm (SE), Zurich (CH), Paris (FR), Los Angeles (US). Company registered in Switzerland. Privacy/anonymity-focused hoster. Only an email required at signup, Signup via VPNs, proxies, and Tor allowed, payments via NOWPayments, CoinPayments.net. Lightning Network (LN) payments via CoinPayments. Working on self/hosted payments. The Swiss dedicated servers are Large Storage and suitable for Bitcoin full nodes. All servers can be used for Tor nodes (exit nodes allowed if you block port 25). Netherlands VPS servers are Large Storage. No Google Captcha. Support via tickets or encrypted email. Dedicated servers in Switzerland, working on more locations. Use promo code BITCOINVPS for 10% off. Very responsive support.
Opera VPS - Locations: London (UK), Frankfurt (DE) , Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Montreal (CA), Amsterdam (NL), Paris (FR), Tokyo (JP). Company registered in US (Washington state). Anonymous signup OK, Tor allowed, Lightning Network (LN) payments via Jeeb
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
HostZealot - Locations: Amsterdam (NL), London (UK), Stockholm (SE), Warsaw (PL), Limassol (CY), Tallinn (EE), Ashburn (US), Chicago (US), Dallas (US), Seattle (US), Toronto (CA), Brussels (BE), Tel Aviv (IL), Hong Kong (HK), Dusseldorf (DE), Tbilisi (GE). Company registered in Bulgaria. Provider states they are Tor and anonymity friendly as long as you do not violate their ToS. All their VPS instances use SSDs, their Poland and Netherlands locations offer NVMe also. User reports they do not allow registration from Protonmail email addresses.
Rockhoster - Locations: US, Canada (CA), France (FR). Company registered in UK.
RackNerd - Locations: Los Angeles (US), Utah (US), Dallas (US), New York (US), New Jersey (US), Seattle (US), Montreal (CA), London (UK), Amsterdam (NL), Chicago (US), San Jose (US), Atlanta (US), Tampa (US), Ashburn (US), Strasbourg (FR), Frankfurt (DE), Singapore (SG). Company registered in United States. Accepts BTC, LTC, ETH, ZEC. No Lightning Network. User reports good service and responsive support. User reports they use Coinbase Commerce
BlueVPS - Locations: Amsterdam (NL), Limassol (CY), Gravelines (FR), Singapore (SG), Sofiya (BG), London (UK), Ashburn (US), Los Angeles (US), Atlanta (US), Frankfurt (DE), Palermo (IT), Tel Aviv (IL), Stockholm (SE), Toronto (CA), Tallinn (EE), Madrid (ES), Hong Kong (CN), Warsaw (PL), Sydney (AU), Fujairah (UAE). Company registered in Estonia. Payments via Coinpayments. Regarding anonymity they state “We require clients confirmation e-Mail or ID”. Provider has hardware in two different data centers at their Warsaw and London locations.
VPS2day - Locations: Frankfurt a.M (DE), Zug/Switzerland (CH), Tallin (EE), Bucharest (RO), The Hague (NL), Stockholm (SE), Manchester (UK), Dallas (US). Company registered in Frankfurt, Germany. Website blocks Tor traffic outright. Does not allow anonymous signup. Payment via Coingate.
Eldernode - Locations: Chicago (US), San Jose (US), New York (US), Denmark (DK), Netherlands (NL), Manchester (UK), France (FR), Germany (DE), Canada. Company registered in Lithuania .
Shock Hosting - Locations: Piscataway/New Jersey (US), Los Angeles (US), Chicago (US), Dallas (US), Jacksonville (US), Denver (US), Seattle (US), Maidenhead (UK), Amsterdam (NL), Sydney (AU), Tokyo (JP), Singapore (SG). Company registered in United States.
Cinfu - Locations: Germany (DE), Bulgaria (BG), France (FR), Netherlands (NL), US. Company registered in Seychelles. Anonymous signup discouraged (automated fraud checks). No signup over Tor (website currently blocks Tor users entirely). User reports their datacentres may de-prioritise Bitcoin related traffic (and/or other large data transfers) resulting in extremely long full node sync times (weeks, single kbps bandwidth) after an initial burst for about 15% of the BTC blockchain
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
LegionBox - Locations: US, Switzerland (CH), Germany (DE), Russia (RU). Company registered in Australia. Anonymous signup discouraged (automated fraud checks)
THC Servers - Locations: Romania (RO), Canada. Company registered in United States. Supports Lightning Network (LN)
ServerMath - Locations: Amsterdam (NL), Hong Kong (HK), Madrid (ES), Seoul (KR), Dallas (TX), Istanbul (TR), Manila (PH), Singapore (SG), Dubai (AE), Lagos (NG), Miami (US), Tokyo (JP), Frankfurt (DE), London (UK), Moscow (RU), Warsaw (PL). Company registered in ???. Accepts Bitcoin via BTCPayServer. Willing to consider payment via other cryptocurrencies on request. Does not require KYC or check identity. Happy to arrange custom server configurations (e.g GPUs, high bandwidth servers). Affiliated with RatioServer. Website does not work when visited from some IP addresses
ExtraVM - Locations: Dallas TX (US), Los Angeles CA (US), Miami FL (US), Vint Hill VA (US), Montreal QC (CAN), London (UK), Gravelines (FR), Sydney (AU), Singapore (SG), Tokyo (JP). Company registered in Delaware, US. Ryzen servers. Crypto payments via Cryptomus. DdoS protected. Also offers Minecraft servers.
Qhoster - Locations: UK, US, Canada (CA), Bulgaria (BG), Lithuania (LT), France (FR), Germany (DE), Netherlands (NL), Switzerland (CH). Company registered in ???. Google captcha
SporeStack - Locations: San Francisco/NYC (US), Toronto (CA), London (UK), Amsterdam (NL), Frankfurt (DE), Singapore (SG), Bangalore (IN). Company registered in Texas (US). Accountless VPS provider. Also takes Bcash / Bitcoin SV. API-only/no registration, servers on Digital Ocean, Vultur/Linode available on request, Tor-only servers in undisclosed location, onion service URL: http://spore64i5sofqlfz5gq2ju4msgzojjwifls7rok2cti624zyq3fcelad.onion/#ref=vps
GlobalDataServer - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), Montreal (CA), New York (US), Seattle (US), Vancouver (CA), Washington DC (US), Amsterdam (NL), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Frankfurt (DE), London (UK), Madrid (ES), Milan (IT), Moscow (RU), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Vienna (AT), Vilnius (LT), Warsaw (PL), Zurich (CH), Bursa (TR), Hong Kong (HK), Singapore (SG), Tokyo (JP), Sydney (AU), Johannesburg (ZA). Company registered in Las Vegas (US). Dedicated servers in 100+ locations. Has high bandwidth 20GBps dedicated servers and can do custom configuration. Tor friendly. Contact them directly to arrange BTC payment. User reports they are likely connected to AllServerHost. Use code BITCOINVPS for a 10% discount on first order
ThunderVM - Locations: Germany (DE), United States (US), Iceland (IS), Switzerland (CH), Netherlands (NL), France (FR), Italy (IT), United Kingdom (UK), Lithuania (LT), Poland (PL). Company registered in italy. Ok with hosting full nodes and Tor relays, but not Tor exit nodes, or (on VPS) mining cryptocurrency. Uses hCaptcha. Provider states that all their servers/hypervisors are installed and encrypted by them for user security. Uses BTCPayServer and self-hosted Monero (XMR) payments. Accepts Lightning Network (LN) payments via NowPayments
AtomicNetworks - Locations: Eygelshoven (NL), Chicago (US), Miami (US), Los Angeles (US). Company registered in Delware, United States. Crypto payments through Coinbase Wallets, samller altcoins via NowPayments. Tor traffic OK. Uses Google Captchas. Asks for personal information but you can write whatever you like.
WindowsVPSHost - Locations: Buffalo (US) . Company registered in Singapore .
Rad Web Hosting - Locations: Dallas TX (US). Company registered in United States. Datacenter located in a former Federal Reserve Bank building, highly secure
HostStage - Locations: France (FR), Canada (CA), US. Company registered in France. Uses Coingate. Also provides shared web hosting. Anonymous sign up OK as long as no fraud, Tor traffic OK provided it is not used in a way that causes trouble
Lunanode - Locations: Canada (CA), France (FR). Company registered in Canada. User reports that registration is not allowed when using a VPN. Another user reports that their VPN worked, but LunaNode required phone number verification to pay with Bitcoin and/or Lightning Network (LN).
SeiMaxim - Locations: Almere (NL), Amsterdam (NL), Los Angeles (US). Company registered in Netherlands. Anonymous signup allowed. Bitcoin full nodes are allowed. Also offers GPU mining servers, domains, shared hosting, and HTTP/SOCKS proxies. Uses Coinbase payment gateway
ForexVPS - Locations: New York (US), London (UK), Manchester (UK), Zurich (CH), Amsterdam (NL), Frankfurt (DE), Singapore (SG), Tokyo (JP). Company registered in Hong Kong. Lightning Network (LN) payment support
IndoVirtue - Locations: Singapore (SG), US. Company registered in Bali, Indonesia (?). No VPN/proxy during signup allowed
VPSGOD - Locations: Germany (DE), US, France (FR), Netherlands (NL), United States (US). Company registered in US. Google captcha
BuyVM / Frantech - Locations: Las Vegas (US), New Jersey (US), Luxembourg (LU), Miami (US). Company registered in Canada. Supports Anycast IP addressing
Servting - Locations: Netherlands (NL), India (IN), Germany (DE), London (UK), United States (US), Singapore (SG), Canada (CA), South Korea (KR), Australia (AU), Japan (JP), Ireland (IE), France (FR), Sweden (SE), Spain (ES), Mexico (MX), Brazil (BR), Poland (PL). Company registered in United States. Currently reselling Digital Ocean, AWS Lightsail and Vultr. BTCPayServer as payment gateway. Encourage anonymous sign-up. Provider notes: “TOR and VPNs allowed, we do not use any fraud detection software such as Maxmind. A real email address is encouraged for correspondence but not a requirement . We offer block storage upgrades upon request. We do not check identities or perform any verification, if payment is successful you get a server!”
RamNode - Locations: Seattle/Los Angeles/Atlanta/NYC (US), Netherlands (NL). Company registered in US. Pay-by-the-hour model. User reports they require phone number verification
VPSServer - Locations: San Francisco/Chicago/Dallas/Miami/NYC (US), Toronto (CA), London (UK), Amsterdam (NL), Frankfurt (DE), Bangalore (IN), Tokyo (JP), Hong Kong (HK), Singapore (SG), Sydney (AU). Company registered in US. Uses BitPay. Reader reports they are Tor hostile: “I can’t join or use SSH to connect to their VPSs over Tor. No relays allowed (and most certainly no exits).” See: https://www.vpsserver.com/community/questions/7/i-want-tot-use-tor-network-is-it-allowed/
LowEndSpirit - Locations: Rotterdam (NL), London (UK), Milan (IT), Phoenix/Kansas/Lenoir NC (US), Tokyo (JP), Falkenstein (DE), Sofia (BG), Sandefjord (NO), Reims (FR), Perth/Sydney (AU), Singapore. Company registered in ???. Now a directory site / forum for low cost hosting.
Namecheap - Locations: US. Company registered in US.
BitLaunch - Locations: DigitalOcean, Vultr, Linode, Netherlands (NL), United States (US), United Kingdom (UK). Company registered in Unknown. Cryptocurrency payment front-end to Digital Ocean/Vultr/Linode. User reprts they also run their own infrastructure with their own ASN
Hostkey - Locations: US, Netherlands (NL), Russia (RU). Company registered in Netherlands. User reports they do not allow registration from Protonmail email addresses
Crowncloud - Locations: Frankfurt (DE), Los Angeles (US). Company registered in Australia.
Hostwinds - Locations: US, Netherlands (NL). Company registered in US.
Mightweb - Locations: US. Company registered in US.
MeanServers - Locations: US. Company registered in US.
SecureDragon - Locations: US. Company registered in US.
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
Javapipe (now Mochahost) - Locations: Chicago (US), Amsterdan (NL), Bucharest (RO). Company registered in ???.
AHnames - Locations: Ashburn (US). Company registered in Netherlands. Supports Lightning Network (LN)
Evolution Host - Locations: Strasbourg (FR), Sydney (AU), Frankfurt (DE), Montreal (CA), London (UK), Dallas (US), Oregon (US), Virginia (US), Warsaw (PL). Company registered in ???. Supports Lightning Network (LN). User reports they have started blocking proxy/Tor signups for smaller packages due to abuse
ChunkHost - Locations: Los Angeles (US). Company registered in US. Has anonymous registration (email and password), and they were first web hosting company to ever accept Bitcoin, way back in 2012. When you pay with Bitcoin, you get 5% discount. No payment processor, they accept BTC directly. Description provided by a user and not verified. There is a CloudFlare / Google captcha for Tor browser users visiting their website
Vultr - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Seattle (US), Silicon Valley (US), Toronto (CA), Amsterdam (NL), Frankfurt (DE), London (UK), Paris (FR), Tokyo (JP), Singapore (SG), Sydney (AU). Company registered in US. Reader reports strong anti-privacy policies: users must make credit card or PayPal payment before they are allowed to make Bitcoin deposits, and they use BitPay (which requires government ID/etc). Reader recommends using a Vultr reseller (e.g Bithost)
xitheon - Locations: Quebec (CA), Frankfurt (DE), Sydney (AU), Warsaw (PL), France (FR), Singapore (SG), UK. Company registered in ???.
letbox - Locations: Los Angeles (US), Dallas (US). Company registered in Seattle (US). Large Storage, may be suitable for running Bitcoin full nodes
Hostens - Locations: London (UK), Frankfurt (DE), Lithuania (LT), Amsterdam (NL), Washington (US), San Fransisco (US), Singapore (SG). Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Requires full KYC (govt ID/etc) on signup, may use BitPay
Hosthatch - Locations: Stockholm (SE), Los Angeles (US), Chicago (US), Amsterdam (NL). Company registered in US. Large Storage, may be suitable for running Bitcoin full nodes
Serverhub - Locations: Chicago (US), Seattle (US), New York (US), Dallas (US), Phoneix (US), Frankfurt (DE). Company registered in US. Large Storage, may be suitable for running Bitcoin full nodes
Time4VPS - Locations: Lithuania (LT), Singapore (SG), US. Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Now requiring KYC (ID scans)
Privex - Locations: Sweden (SE), Netherlands (NL), Germany (DE), Finland (FI), United States (US), Japan (JP), Canada (CA). Company registered in Belize. Owns their own hardware and network at their SE / NL regions. Resells Hetzner in DE / FI. Resells Dacentec+Reliablesite in US. Resells Vultr in JP/CA. Privacy focused, anonymous/pseudonymous sign up encouraged. No captchas/cloudflare/analytics. Payments processed by their own in-house solution. Allows hosting Tor exit nodes / public VPNs in SE/NL locations and Tor/I2P relays in all locations except JP/CA. Runs their own Tor nodes to support the network. Ordering is possible with JavaScript disabled. Supports Bring-Your-Own-IP and colocation in SE/NL. Very flexible and willing to consider special requests. Onion service: http://privex3guvvasyer6pxz2fqcgy56auvw5egkir6ykwpptferdcb5toad.onion/ and I2P service: http://privex.i2p/
RatioServer - Locations: Amsterdam (NL), Budapest (HU), Copenhagen (DK), Dallas (US), Dublin (IE), Frankfurt (DE), London (UK), Los Angeles (US), Madrid (ES), Miami (US), Montreal (CA), New York (US), Paris (FR), Prague (CZ), Rome (IT), Singapore (SG), Sofia (BG), Sydney (AU), Tokyo (JP), Zurich (CH) and more. Company registered in ???. Most locations have unmetered dedicated servers and custom-built server options available. Tor- and anonymity-friendly. Does not verify email address validity, but encourages people to sign up with a working email address. Uses their own in-house BTC/ETH payment processor
Aaroli - Locations: Amsterdam (NL), Atlanta (US), Frankfurt (DE), London (UK), Paris (FR), Singapore (SG), Sydney (AU), Tokyo (JP), Toronto (CA). Company registered in an undisclosed location. Large Storage offered in 5 locations, may be suitable for full nodes. Payment via BTCPayServer or manual payment (accepts BTC, ETH). Willing to do custom configurations or payment via alternate methods. Anonymous/pseudonymous signup OK, provided you provide a working email address.
Servers.Guru - Locations: Helsinki (FI), Nuremberg (DE), Falkenstein (DE), Ashburn (US). Company registered in United States. Anonymous signup allowed (only a valid email address is required). Tor traffic OK. Accepts Lightning Network (LN) payments. Uses self-hosted BitCartCC for Bitcoin payments (as well as others), takes DOGE, DASH, and Zcash/ZEC via Plisio.
MadGenius - Locations: Minneapolis (US), Chicago (US), Ashburn (US). Company registered in Minnesota, US. Uses BitPay, but user reports that if you email their sales department they will give you a non-BitPay BTC address. User reports they do not require/verify personal info except for email address.
BreezeHost - Locations: Dallas TX (US), Charlotte NC (US). Company registered in United States. Accepts Bitcoin (and other cryptocurrencies) using Plisio, Lightning payments currently not supported. Personal information supplied at signup does not need to be accurate. Tor traffic is allowed.
VPS-mart / DatabaseMart - Locations: Dallas (US). Company registered in Dallas (US).
TechRich - Locations: Japan (JP), Korea (KR), Malaysia (MY), China (CN), Hong Kong (HK), United States (US), Thailand (TH). Company registered in Hong Kong. They ask for user information but don’t verify/require KYC if you pay by cryptocurrency. Tor traffic OK as long as you don’t get abuse/complaints. They can arrange dedicated fiber lines for each client at the HK location. Uses Coinpayments, Bitpay, and Payeer for payments, can arrange other payment methods as long as you are not sending from an OFAC-listed address. They accept Lightning Network (LN) payments
IncogNET - Locations: Netherlands (NL), Idaho (US). Company registered in Wyoming, United States. Accepts Bitcoin via BTCPayServer (and other cryptocurrencies also). No personal information required to sign up, only an email address (which isn’t verified). Ordering via Tor/VPN is OK. Large Storage available on a case-by-case basis, contact them to arrange it. Uses Google Captchas (reCaptcha). Also does anonymous domain registration
SafeAlps - Locations: Switzerland (CH) (shared hosting only), Romania (RO), United States (US), Iceland (IS) (email hosting only). Company registered in Switzerland. VPS in Romania and the US, shared hosting in Switzerland, one-time-payment email hosting in Iceland. Tor-friendly, both traffic and nodes are welcome. Anonymous sign up is OK, PGP encrypted email communication is supported. Payments via Plisio, Lightning Network (LN) payment supported. No captchas or assets loaded from servers they don’t control. Large Storage servers with HDDs (or SSDs on request) are available.
Webconn Technology - Locations: Netherlands (NL), United States (US), Italy (IT), Japan (JP), France (FR). Company registered in Pakistan. Offers GPU servers. Unlimited traffic. They don’t care what information you provide at signup. Payments via Coinbase or direct transfer to wallet. Google captchas. Linked to Seimaxim
Domains4Bitcoins - Locations: United States (US), India (IN). Company registered in United States. Payments via BitPay – KYC and BitPay account required to purchase
GoSSDHosting - Locations: United States (US), India (IN). Company registered in India.
RDP.sh - Locations: Netherlands (NL), Phoneix (US), Poland (PL). Company registered in Germany. Privacy focused Windows RDP and Linux server provider. Only asks for email, no KYC. Accepts Bitcoin via Coinbase gateway.
CoinsHosting - Locations: New York (US). Company registered in Delaware, US. Tor traffic allowed only on dedicated servers. Doesn’t check the information you provide at signup (only asks for name and email). May require for KYC for suspicious or abusive customers but provider states they do so very rarely. Payments via CoinPayments and Coinify. Uses Google Captchas.
NetNexus - Locations: Virginia (US), Ohio (US), California (US), Oregon (US), Mumbai (IN), Osaka (JP), Seoul (KR), Singapore (SG), Sydney (AU), Tokyo (JP), Central (CA), Frankfurt (DE), Ireland (IE), London (GB), Paris (FR), Stockholm (SE), Sao Paulo (BR). Company registered in Portland, Oregon. Tor traffic allowed. Asks for email address, name, phone number, etc on signup but doesn’t verify the information. Bitcoin payment with Plisio. No Google Captchas. Large Storage, maybe suitable for full nodes.
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
SnowCore - Locations: Amsterdam (NL), Salt Lake City (US). Company registered in ???. Uses a Mullvad-style token login system so they don’t collect any personal information at all. Payments via NOWpayments. Cloudflare captchas. Dedicated servers available with 1TB SSDs for 30 EUR one time payment in some locations, might be useful as Large Storage servers for full nodes. Tor is allowed and fully supported.
Gigablits - Locations: Amsterdam (NL), Bangalore (IN), Frankfurt (DE), London (UK), New York (US), San Francisco (US), Singapore (SG), Sydney (AU), Toronto (CA). Company registered in ???. DigitalOcean reseller. Anonymity focused, no personal information required. Payments accepted via Plisio. User reports they took payment but did not deliver service or respond to tickets, business may be defunct.
VPSBroker - Locations: Amsterdam (NL), Atlanta (US), Bangalore (IN), Chicago (US), Dallas (US), Delhi NCR (IN), Frankfurt (DE), Honolulu (US), Johannesburg (ZA), London (UK), Los Angeles (US), Madrid (ES), Manchester (UK), Melbourne (AU), Mexico City (MX), Miami (US), Mumbai (IN), New York (US), Osaka (JP), Paris (FR), Santiago (CL), São Paulo (BR), Seattle (US), Silicon Valley (US), Singapore (SG), Stockholm (SE), Sydney (AU), Tel Aviv (IL), Tokyo (JP), Toronto (CA), Warsaw (PL), Seoul (KR). Company registered in ???. Signup over Tor ok, user reports no captchas or Maxmind/KYC. Accepts Bitcoin, Monero (XMR), and others. User reports the UI is really good. Disk space available up to 160GB.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
BrilliantHost - Locations: Washington, D.C. (US), California (US), Iowa (US), Toronto (CA), London (GB), Amsterdam (NL), Warsaw (PL), Paris (FR), Frankfurt (DE), Milan (IT), Vienna (AT), Sydney (AU), Hong Kong (HK), Stockholm (SE), Dubai (AE), São Paulo (BR). Company registered in Wyoming, United States. Tor traffic OK. No Google Captchas. Very privacy-and anonymity friendly, only an email is required. Processes crypto payments manually via their support team. Advertises high performance at low prices.
Initech - Locations: Melbourne (AU), Sydney (AU), Belgium (BE), Sao Paulo (BR), Montreal (CA), Toronto (CA), Santiago (CL), Hong Kong (CN), Helsinki (FI), Finland (FI), Paris (FR), Berlin (DE), Falkenstein (DE), Frankfurt (DE), Nuremberg (DE), Bangalore (IN), Delhi (IN), Mumbai (IN), Jakarta (ID), Ireland (IE), Tel Aviv (IL), Milan (IT), Turnin (IT), Osaka (JP), Tokyo (JP), Kuala Lumpur (MY), Mexico City (MX), Amsterdam (NL), Holland (NL), Manila (PH), Warsaw (PL), Doha (QA), Singapore (SG), Johannesburg (ZA), Seoul (KR), Madrid (ES), Stockholm (SE), Dubai (AE), London (UK), Manchester (UK), Atlanta (US), Chicago (US), Columbus (US), Dallas (US), Honolulu (US), Iowa (US), Las Vegas (US), Los Angeles (US), Miami (US), New York (US), Ohio (US), Oregon (US), Salt Lake City (US), San Francisco (US), Seattle (US), Silicon Valley (US), South Carolina (US), Virginia (US), Zurich (CH), Taiwan (TW). Company registered in United States. Also offers a residential proxy (VPN) service with endpoints available in almost every country worldwide (the residential proxy service blocks websites that are common abuse targets, like banking or Netflix. Their VPS service does not block). Resells VPS services from many cloud providers (Vultr, Alibaba Cloud, Amazon Lightsail/AWS, DigitalOcean, Google Cloud/GCP, Hetzner Cloud). No email verification required to order. Accept all major cryptocurrencies. Tor traffic is OK, their website is built to be easy to use over Tor. Accepts crypto payments via Plisio and BTCPayServer, including Bitcoin Lightning Network (LN) payments via BTCPayServer. Large Storage / Block storage 40GB up to 40TB now available via normal ordering flow. Use promo code BITCOINVPS for 10% discount on all orders for new customers.
Opera VPS - Locations: London (UK), Frankfurt (DE) , Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Montreal (CA), Amsterdam (NL), Paris (FR), Tokyo (JP). Company registered in US (Washington state). Anonymous signup OK, Tor allowed, Lightning Network (LN) payments via Jeeb
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
HostZealot - Locations: Amsterdam (NL), London (UK), Stockholm (SE), Warsaw (PL), Limassol (CY), Tallinn (EE), Ashburn (US), Chicago (US), Dallas (US), Seattle (US), Toronto (CA), Brussels (BE), Tel Aviv (IL), Hong Kong (HK), Dusseldorf (DE), Tbilisi (GE). Company registered in Bulgaria. Provider states they are Tor and anonymity friendly as long as you do not violate their ToS. All their VPS instances use SSDs, their Poland and Netherlands locations offer NVMe also. User reports they do not allow registration from Protonmail email addresses.
RackNerd - Locations: Los Angeles (US), Utah (US), Dallas (US), New York (US), New Jersey (US), Seattle (US), Montreal (CA), London (UK), Amsterdam (NL), Chicago (US), San Jose (US), Atlanta (US), Tampa (US), Ashburn (US), Strasbourg (FR), Frankfurt (DE), Singapore (SG). Company registered in United States. Accepts BTC, LTC, ETH, ZEC. No Lightning Network. User reports good service and responsive support. User reports they use Coinbase Commerce
BlueVPS - Locations: Amsterdam (NL), Limassol (CY), Gravelines (FR), Singapore (SG), Sofiya (BG), London (UK), Ashburn (US), Los Angeles (US), Atlanta (US), Frankfurt (DE), Palermo (IT), Tel Aviv (IL), Stockholm (SE), Toronto (CA), Tallinn (EE), Madrid (ES), Hong Kong (CN), Warsaw (PL), Sydney (AU), Fujairah (UAE). Company registered in Estonia. Payments via Coinpayments. Regarding anonymity they state “We require clients confirmation e-Mail or ID”. Provider has hardware in two different data centers at their Warsaw and London locations.
Shock Hosting - Locations: Piscataway/New Jersey (US), Los Angeles (US), Chicago (US), Dallas (US), Jacksonville (US), Denver (US), Seattle (US), Maidenhead (UK), Amsterdam (NL), Sydney (AU), Tokyo (JP), Singapore (SG). Company registered in United States.
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
ServerMath - Locations: Amsterdam (NL), Hong Kong (HK), Madrid (ES), Seoul (KR), Dallas (TX), Istanbul (TR), Manila (PH), Singapore (SG), Dubai (AE), Lagos (NG), Miami (US), Tokyo (JP), Frankfurt (DE), London (UK), Moscow (RU), Warsaw (PL). Company registered in ???. Accepts Bitcoin via BTCPayServer. Willing to consider payment via other cryptocurrencies on request. Does not require KYC or check identity. Happy to arrange custom server configurations (e.g GPUs, high bandwidth servers). Affiliated with RatioServer. Website does not work when visited from some IP addresses
ExtraVM - Locations: Dallas TX (US), Los Angeles CA (US), Miami FL (US), Vint Hill VA (US), Montreal QC (CAN), London (UK), Gravelines (FR), Sydney (AU), Singapore (SG), Tokyo (JP). Company registered in Delaware, US. Ryzen servers. Crypto payments via Cryptomus. DdoS protected. Also offers Minecraft servers.
SporeStack - Locations: San Francisco/NYC (US), Toronto (CA), London (UK), Amsterdam (NL), Frankfurt (DE), Singapore (SG), Bangalore (IN). Company registered in Texas (US). Accountless VPS provider. Also takes Bcash / Bitcoin SV. API-only/no registration, servers on Digital Ocean, Vultur/Linode available on request, Tor-only servers in undisclosed location, onion service URL: http://spore64i5sofqlfz5gq2ju4msgzojjwifls7rok2cti624zyq3fcelad.onion/#ref=vps
GlobalDataServer - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), Montreal (CA), New York (US), Seattle (US), Vancouver (CA), Washington DC (US), Amsterdam (NL), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Frankfurt (DE), London (UK), Madrid (ES), Milan (IT), Moscow (RU), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Vienna (AT), Vilnius (LT), Warsaw (PL), Zurich (CH), Bursa (TR), Hong Kong (HK), Singapore (SG), Tokyo (JP), Sydney (AU), Johannesburg (ZA). Company registered in Las Vegas (US). Dedicated servers in 100+ locations. Has high bandwidth 20GBps dedicated servers and can do custom configuration. Tor friendly. Contact them directly to arrange BTC payment. User reports they are likely connected to AllServerHost. Use code BITCOINVPS for a 10% discount on first order
MLNL.host (Millenial) - Locations: Hong Kong (HK), United Kingdom (UK). Company registered in UK. More locations being added. KVM servers, offers cheaper options behind NAT. User reports they work well for accessing geofenced web services intended for HK users. User reports payment is via CoinGate and Coinbase. Automated fraud checks may cancel your order (file a ticket to get through this)
Mondoze - Locations: Cyberjaya Malaysia (MY). Company registered in Malaysia. Payments via Plisio. Dedicated server available if you contact them directly. Tor traffic OK as long as you conform to their TOS. Anonymous sign up OK. Large storage maybe available if you contact support.
Ahost - Locations: Dubai (AE), Vienna (AT), Sydney (AU), Brussels (BE), Sofia (BG), Zurich (CH), Prague (CZ), Copenhagen (DK), Seville (ES), Thessaloniki (GR), Kwai Chung (HK), Zagreb (HR), Budapest (HU), Tel Aviv (IL), Hafnarfjordur (IS), Milan (IT), Tokyo (JP), Vilnius (LT), Riga (LV), Chisinau (MD), Skopje (MK), Oslo (NO), Warsaw (PL), Belgrade (RS), Bucharest (RO), Moscow (RU), Stockholm (SE), Ljubljana (SI). Company registered in Estonia. No anonymous signup. No Tor or spam allowed. Payments via Payeer. KVM virtualization, Gigabit speeds for every VPS. They do NOT want anonymous signups or Tor traffic. User reports they ask for KYC (scan of government ID) after payment. Google Captchas
ForexVPS - Locations: New York (US), London (UK), Manchester (UK), Zurich (CH), Amsterdam (NL), Frankfurt (DE), Singapore (SG), Tokyo (JP). Company registered in Hong Kong. Lightning Network (LN) payment support
IndoVirtue - Locations: Singapore (SG), US. Company registered in Bali, Indonesia (?). No VPN/proxy during signup allowed
Servting - Locations: Netherlands (NL), India (IN), Germany (DE), London (UK), United States (US), Singapore (SG), Canada (CA), South Korea (KR), Australia (AU), Japan (JP), Ireland (IE), France (FR), Sweden (SE), Spain (ES), Mexico (MX), Brazil (BR), Poland (PL). Company registered in United States. Currently reselling Digital Ocean, AWS Lightsail and Vultr. BTCPayServer as payment gateway. Encourage anonymous sign-up. Provider notes: “TOR and VPNs allowed, we do not use any fraud detection software such as Maxmind. A real email address is encouraged for correspondence but not a requirement . We offer block storage upgrades upon request. We do not check identities or perform any verification, if payment is successful you get a server!”
VPSServer - Locations: San Francisco/Chicago/Dallas/Miami/NYC (US), Toronto (CA), London (UK), Amsterdam (NL), Frankfurt (DE), Bangalore (IN), Tokyo (JP), Hong Kong (HK), Singapore (SG), Sydney (AU). Company registered in US. Uses BitPay. Reader reports they are Tor hostile: “I can’t join or use SSH to connect to their VPSs over Tor. No relays allowed (and most certainly no exits).” See: https://www.vpsserver.com/community/questions/7/i-want-tot-use-tor-network-is-it-allowed/
LowEndSpirit - Locations: Rotterdam (NL), London (UK), Milan (IT), Phoenix/Kansas/Lenoir NC (US), Tokyo (JP), Falkenstein (DE), Sofia (BG), Sandefjord (NO), Reims (FR), Perth/Sydney (AU), Singapore. Company registered in ???. Now a directory site / forum for low cost hosting.
VPSBit - Locations: Hong Kong (HK), Lithuania (LT). Company registered in Hong Kong & Lithuania.
JPStream - Locations: Japan (JP). Company registered in Japan.
Hostkey - Locations: US, Netherlands (NL), Russia (RU). Company registered in Netherlands. User reports they do not allow registration from Protonmail email addresses
InternetBrothers - Locations: Korea (KR). Company registered in Korea. BTC accepted only on orders over $100, dedicated servers are not pre-configured. Non-HTTPS site
Kdatacenter - Locations: Korea (KR). Company registered in Korea.
VpsHosting - Locations: Hong Kong (HK). Company registered in Hong Kong (HK).
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
SuperBitHost - Locations: Bulgaria (BG), Germany (DE), Netherlands (NL), Luxembourg (LU), Malaysia (MY) Russia (RU), Singapore (SG), Switzerland (CH). Company registered in ???. uses Google captchas
Vultr - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Seattle (US), Silicon Valley (US), Toronto (CA), Amsterdam (NL), Frankfurt (DE), London (UK), Paris (FR), Tokyo (JP), Singapore (SG), Sydney (AU). Company registered in US. Reader reports strong anti-privacy policies: users must make credit card or PayPal payment before they are allowed to make Bitcoin deposits, and they use BitPay (which requires government ID/etc). Reader recommends using a Vultr reseller (e.g Bithost)
xitheon - Locations: Quebec (CA), Frankfurt (DE), Sydney (AU), Warsaw (PL), France (FR), Singapore (SG), UK. Company registered in ???.
Hostens - Locations: London (UK), Frankfurt (DE), Lithuania (LT), Amsterdam (NL), Washington (US), San Fransisco (US), Singapore (SG). Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Requires full KYC (govt ID/etc) on signup, may use BitPay
ClientVPS - Locations: Bahrain (BH), Ukraine (UA), Netherlands (NL), Panama (PA), Russia (RU), Singapore (SG), Hong Kong (HK), Iran (IR). Company registered in Russia or US, it’s unclear. “Bulletproof” hosting provider.
Time4VPS - Locations: Lithuania (LT), Singapore (SG), US. Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Now requiring KYC (ID scans)
Privex - Locations: Sweden (SE), Netherlands (NL), Germany (DE), Finland (FI), United States (US), Japan (JP), Canada (CA). Company registered in Belize. Owns their own hardware and network at their SE / NL regions. Resells Hetzner in DE / FI. Resells Dacentec+Reliablesite in US. Resells Vultr in JP/CA. Privacy focused, anonymous/pseudonymous sign up encouraged. No captchas/cloudflare/analytics. Payments processed by their own in-house solution. Allows hosting Tor exit nodes / public VPNs in SE/NL locations and Tor/I2P relays in all locations except JP/CA. Runs their own Tor nodes to support the network. Ordering is possible with JavaScript disabled. Supports Bring-Your-Own-IP and colocation in SE/NL. Very flexible and willing to consider special requests. Onion service: http://privex3guvvasyer6pxz2fqcgy56auvw5egkir6ykwpptferdcb5toad.onion/ and I2P service: http://privex.i2p/
RatioServer - Locations: Amsterdam (NL), Budapest (HU), Copenhagen (DK), Dallas (US), Dublin (IE), Frankfurt (DE), London (UK), Los Angeles (US), Madrid (ES), Miami (US), Montreal (CA), New York (US), Paris (FR), Prague (CZ), Rome (IT), Singapore (SG), Sofia (BG), Sydney (AU), Tokyo (JP), Zurich (CH) and more. Company registered in ???. Most locations have unmetered dedicated servers and custom-built server options available. Tor- and anonymity-friendly. Does not verify email address validity, but encourages people to sign up with a working email address. Uses their own in-house BTC/ETH payment processor
Aaroli - Locations: Amsterdam (NL), Atlanta (US), Frankfurt (DE), London (UK), Paris (FR), Singapore (SG), Sydney (AU), Tokyo (JP), Toronto (CA). Company registered in an undisclosed location. Large Storage offered in 5 locations, may be suitable for full nodes. Payment via BTCPayServer or manual payment (accepts BTC, ETH). Willing to do custom configurations or payment via alternate methods. Anonymous/pseudonymous signup OK, provided you provide a working email address.
Casbay - Locations: Malaysia (MY), Singapore (SG). Company registered in Malaysia. Accepts Bitcoin (and many more cryptocurrencies) via Plisio. No restrictions on Tor traffic. They only verify email address on signup, but may require KYC if you trigger anti-abuse/anti-fraud monitoring systems. Uses Google Captchas. Offers Large Storage servers, may be suitable for full nodes. Even larger storage capacity available if you contact them directly.
TechRich - Locations: Japan (JP), Korea (KR), Malaysia (MY), China (CN), Hong Kong (HK), United States (US), Thailand (TH). Company registered in Hong Kong. They ask for user information but don’t verify/require KYC if you pay by cryptocurrency. Tor traffic OK as long as you don’t get abuse/complaints. They can arrange dedicated fiber lines for each client at the HK location. Uses Coinpayments, Bitpay, and Payeer for payments, can arrange other payment methods as long as you are not sending from an OFAC-listed address. They accept Lightning Network (LN) payments
Wesbytes - Locations: Malaysia (MY). Company registered in Malaysia. Payments via Coinbase. Verifies email address, does not encourage anonymous registration. Does not limit user activity other than specified in their TOS. All VPS instances use KVM
Webconn Technology - Locations: Netherlands (NL), United States (US), Italy (IT), Japan (JP), France (FR). Company registered in Pakistan. Offers GPU servers. Unlimited traffic. They don’t care what information you provide at signup. Payments via Coinbase or direct transfer to wallet. Google captchas. Linked to Seimaxim
Domains4Bitcoins - Locations: United States (US), India (IN). Company registered in United States. Payments via BitPay – KYC and BitPay account required to purchase
GoSSDHosting - Locations: United States (US), India (IN). Company registered in India.
Melbicom - Locations: Riga (LV), Amsterdam (NL), Warsaw (PL), Moscow (RU), Palermo (IT), Vilnius (LT), Madrid (ES), Sofia (BG), Lagos (NG), Singapore (SG), Fujairah (AE), Atlanta (US), Los Angeles (US). Company registered in Lithuania. Windows and Linux VPS. Also offers CDN services. No Tor traffic allowed. They don’t ask for much personal information but don’t want anonymous signup, they may request ID verification. No illegal activities allowed. Bitcoin Lightning network (LN) payments supported. No Google Captchas. Large Storage servers are available. They support BGP sessions, colocations, and cloud services also.
NetNexus - Locations: Virginia (US), Ohio (US), California (US), Oregon (US), Mumbai (IN), Osaka (JP), Seoul (KR), Singapore (SG), Sydney (AU), Tokyo (JP), Central (CA), Frankfurt (DE), Ireland (IE), London (GB), Paris (FR), Stockholm (SE), Sao Paulo (BR). Company registered in Portland, Oregon. Tor traffic allowed. Asks for email address, name, phone number, etc on signup but doesn’t verify the information. Bitcoin payment with Plisio. No Google Captchas. Large Storage, maybe suitable for full nodes.
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
Gigablits - Locations: Amsterdam (NL), Bangalore (IN), Frankfurt (DE), London (UK), New York (US), San Francisco (US), Singapore (SG), Sydney (AU), Toronto (CA). Company registered in ???. DigitalOcean reseller. Anonymity focused, no personal information required. Payments accepted via Plisio. User reports they took payment but did not deliver service or respond to tickets, business may be defunct.
VPSBroker - Locations: Amsterdam (NL), Atlanta (US), Bangalore (IN), Chicago (US), Dallas (US), Delhi NCR (IN), Frankfurt (DE), Honolulu (US), Johannesburg (ZA), London (UK), Los Angeles (US), Madrid (ES), Manchester (UK), Melbourne (AU), Mexico City (MX), Miami (US), Mumbai (IN), New York (US), Osaka (JP), Paris (FR), Santiago (CL), São Paulo (BR), Seattle (US), Silicon Valley (US), Singapore (SG), Stockholm (SE), Sydney (AU), Tel Aviv (IL), Tokyo (JP), Toronto (CA), Warsaw (PL), Seoul (KR). Company registered in ???. Signup over Tor ok, user reports no captchas or Maxmind/KYC. Accepts Bitcoin, Monero (XMR), and others. User reports the UI is really good. Disk space available up to 160GB.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
BrilliantHost - Locations: Washington, D.C. (US), California (US), Iowa (US), Toronto (CA), London (GB), Amsterdam (NL), Warsaw (PL), Paris (FR), Frankfurt (DE), Milan (IT), Vienna (AT), Sydney (AU), Hong Kong (HK), Stockholm (SE), Dubai (AE), São Paulo (BR). Company registered in Wyoming, United States. Tor traffic OK. No Google Captchas. Very privacy-and anonymity friendly, only an email is required. Processes crypto payments manually via their support team. Advertises high performance at low prices.
Initech - Locations: Melbourne (AU), Sydney (AU), Belgium (BE), Sao Paulo (BR), Montreal (CA), Toronto (CA), Santiago (CL), Hong Kong (CN), Helsinki (FI), Finland (FI), Paris (FR), Berlin (DE), Falkenstein (DE), Frankfurt (DE), Nuremberg (DE), Bangalore (IN), Delhi (IN), Mumbai (IN), Jakarta (ID), Ireland (IE), Tel Aviv (IL), Milan (IT), Turnin (IT), Osaka (JP), Tokyo (JP), Kuala Lumpur (MY), Mexico City (MX), Amsterdam (NL), Holland (NL), Manila (PH), Warsaw (PL), Doha (QA), Singapore (SG), Johannesburg (ZA), Seoul (KR), Madrid (ES), Stockholm (SE), Dubai (AE), London (UK), Manchester (UK), Atlanta (US), Chicago (US), Columbus (US), Dallas (US), Honolulu (US), Iowa (US), Las Vegas (US), Los Angeles (US), Miami (US), New York (US), Ohio (US), Oregon (US), Salt Lake City (US), San Francisco (US), Seattle (US), Silicon Valley (US), South Carolina (US), Virginia (US), Zurich (CH), Taiwan (TW). Company registered in United States. Also offers a residential proxy (VPN) service with endpoints available in almost every country worldwide (the residential proxy service blocks websites that are common abuse targets, like banking or Netflix. Their VPS service does not block). Resells VPS services from many cloud providers (Vultr, Alibaba Cloud, Amazon Lightsail/AWS, DigitalOcean, Google Cloud/GCP, Hetzner Cloud). No email verification required to order. Accept all major cryptocurrencies. Tor traffic is OK, their website is built to be easy to use over Tor. Accepts crypto payments via Plisio and BTCPayServer, including Bitcoin Lightning Network (LN) payments via BTCPayServer. Large Storage / Block storage 40GB up to 40TB now available via normal ordering flow. Use promo code BITCOINVPS for 10% discount on all orders for new customers.
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
Vultr - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Seattle (US), Silicon Valley (US), Toronto (CA), Amsterdam (NL), Frankfurt (DE), London (UK), Paris (FR), Tokyo (JP), Singapore (SG), Sydney (AU). Company registered in US. Reader reports strong anti-privacy policies: users must make credit card or PayPal payment before they are allowed to make Bitcoin deposits, and they use BitPay (which requires government ID/etc). Reader recommends using a Vultr reseller (e.g Bithost)
xitheon - Locations: Quebec (CA), Frankfurt (DE), Sydney (AU), Warsaw (PL), France (FR), Singapore (SG), UK. Company registered in ???.
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
HostZealot - Locations: Amsterdam (NL), London (UK), Stockholm (SE), Warsaw (PL), Limassol (CY), Tallinn (EE), Ashburn (US), Chicago (US), Dallas (US), Seattle (US), Toronto (CA), Brussels (BE), Tel Aviv (IL), Hong Kong (HK), Dusseldorf (DE), Tbilisi (GE). Company registered in Bulgaria. Provider states they are Tor and anonymity friendly as long as you do not violate their ToS. All their VPS instances use SSDs, their Poland and Netherlands locations offer NVMe also. User reports they do not allow registration from Protonmail email addresses.
BlueVPS - Locations: Amsterdam (NL), Limassol (CY), Gravelines (FR), Singapore (SG), Sofiya (BG), London (UK), Ashburn (US), Los Angeles (US), Atlanta (US), Frankfurt (DE), Palermo (IT), Tel Aviv (IL), Stockholm (SE), Toronto (CA), Tallinn (EE), Madrid (ES), Hong Kong (CN), Warsaw (PL), Sydney (AU), Fujairah (UAE). Company registered in Estonia. Payments via Coinpayments. Regarding anonymity they state “We require clients confirmation e-Mail or ID”. Provider has hardware in two different data centers at their Warsaw and London locations.
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
ServerMath - Locations: Amsterdam (NL), Hong Kong (HK), Madrid (ES), Seoul (KR), Dallas (TX), Istanbul (TR), Manila (PH), Singapore (SG), Dubai (AE), Lagos (NG), Miami (US), Tokyo (JP), Frankfurt (DE), London (UK), Moscow (RU), Warsaw (PL). Company registered in ???. Accepts Bitcoin via BTCPayServer. Willing to consider payment via other cryptocurrencies on request. Does not require KYC or check identity. Happy to arrange custom server configurations (e.g GPUs, high bandwidth servers). Affiliated with RatioServer. Website does not work when visited from some IP addresses
Ahost - Locations: Dubai (AE), Vienna (AT), Sydney (AU), Brussels (BE), Sofia (BG), Zurich (CH), Prague (CZ), Copenhagen (DK), Seville (ES), Thessaloniki (GR), Kwai Chung (HK), Zagreb (HR), Budapest (HU), Tel Aviv (IL), Hafnarfjordur (IS), Milan (IT), Tokyo (JP), Vilnius (LT), Riga (LV), Chisinau (MD), Skopje (MK), Oslo (NO), Warsaw (PL), Belgrade (RS), Bucharest (RO), Moscow (RU), Stockholm (SE), Ljubljana (SI). Company registered in Estonia. No anonymous signup. No Tor or spam allowed. Payments via Payeer. KVM virtualization, Gigabit speeds for every VPS. They do NOT want anonymous signups or Tor traffic. User reports they ask for KYC (scan of government ID) after payment. Google Captchas
IpTransit - Locations: Iran (IR). Company registered in Iran. Non-HTTPS site. Appears to be down, but you can try emailing them at the address given on their website
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
ClientVPS - Locations: Bahrain (BH), Ukraine (UA), Netherlands (NL), Panama (PA), Russia (RU), Singapore (SG), Hong Kong (HK), Iran (IR). Company registered in Russia or US, it’s unclear. “Bulletproof” hosting provider.
Melbicom - Locations: Riga (LV), Amsterdam (NL), Warsaw (PL), Moscow (RU), Palermo (IT), Vilnius (LT), Madrid (ES), Sofia (BG), Lagos (NG), Singapore (SG), Fujairah (AE), Atlanta (US), Los Angeles (US). Company registered in Lithuania. Windows and Linux VPS. Also offers CDN services. No Tor traffic allowed. They don’t ask for much personal information but don’t want anonymous signup, they may request ID verification. No illegal activities allowed. Bitcoin Lightning network (LN) payments supported. No Google Captchas. Large Storage servers are available. They support BGP sessions, colocations, and cloud services also.
VPSBroker - Locations: Amsterdam (NL), Atlanta (US), Bangalore (IN), Chicago (US), Dallas (US), Delhi NCR (IN), Frankfurt (DE), Honolulu (US), Johannesburg (ZA), London (UK), Los Angeles (US), Madrid (ES), Manchester (UK), Melbourne (AU), Mexico City (MX), Miami (US), Mumbai (IN), New York (US), Osaka (JP), Paris (FR), Santiago (CL), São Paulo (BR), Seattle (US), Silicon Valley (US), Singapore (SG), Stockholm (SE), Sydney (AU), Tel Aviv (IL), Tokyo (JP), Toronto (CA), Warsaw (PL), Seoul (KR). Company registered in ???. Signup over Tor ok, user reports no captchas or Maxmind/KYC. Accepts Bitcoin, Monero (XMR), and others. User reports the UI is really good. Disk space available up to 160GB.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
BrilliantHost - Locations: Washington, D.C. (US), California (US), Iowa (US), Toronto (CA), London (GB), Amsterdam (NL), Warsaw (PL), Paris (FR), Frankfurt (DE), Milan (IT), Vienna (AT), Sydney (AU), Hong Kong (HK), Stockholm (SE), Dubai (AE), São Paulo (BR). Company registered in Wyoming, United States. Tor traffic OK. No Google Captchas. Very privacy-and anonymity friendly, only an email is required. Processes crypto payments manually via their support team. Advertises high performance at low prices.
Shock Hosting - Locations: Piscataway/New Jersey (US), Los Angeles (US), Chicago (US), Dallas (US), Jacksonville (US), Denver (US), Seattle (US), Maidenhead (UK), Amsterdam (NL), Sydney (AU), Tokyo (JP), Singapore (SG). Company registered in United States.
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
ExtraVM - Locations: Dallas TX (US), Los Angeles CA (US), Miami FL (US), Vint Hill VA (US), Montreal QC (CAN), London (UK), Gravelines (FR), Sydney (AU), Singapore (SG), Tokyo (JP). Company registered in Delaware, US. Ryzen servers. Crypto payments via Cryptomus. DdoS protected. Also offers Minecraft servers.
VPSServer - Locations: San Francisco/Chicago/Dallas/Miami/NYC (US), Toronto (CA), London (UK), Amsterdam (NL), Frankfurt (DE), Bangalore (IN), Tokyo (JP), Hong Kong (HK), Singapore (SG), Sydney (AU). Company registered in US. Uses BitPay. Reader reports they are Tor hostile: “I can’t join or use SSH to connect to their VPSs over Tor. No relays allowed (and most certainly no exits).” See: https://www.vpsserver.com/community/questions/7/i-want-tot-use-tor-network-is-it-allowed/
ZappieHost - Locations: New Zealand (NZ), South Africa (ZA), Valdivia (CL). Company registered in US.
Vultr - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Seattle (US), Silicon Valley (US), Toronto (CA), Amsterdam (NL), Frankfurt (DE), London (UK), Paris (FR), Tokyo (JP), Singapore (SG), Sydney (AU). Company registered in US. Reader reports strong anti-privacy policies: users must make credit card or PayPal payment before they are allowed to make Bitcoin deposits, and they use BitPay (which requires government ID/etc). Reader recommends using a Vultr reseller (e.g Bithost)
RatioServer - Locations: Amsterdam (NL), Budapest (HU), Copenhagen (DK), Dallas (US), Dublin (IE), Frankfurt (DE), London (UK), Los Angeles (US), Madrid (ES), Miami (US), Montreal (CA), New York (US), Paris (FR), Prague (CZ), Rome (IT), Singapore (SG), Sofia (BG), Sydney (AU), Tokyo (JP), Zurich (CH) and more. Company registered in ???. Most locations have unmetered dedicated servers and custom-built server options available. Tor- and anonymity-friendly. Does not verify email address validity, but encourages people to sign up with a working email address. Uses their own in-house BTC/ETH payment processor
Aaroli - Locations: Amsterdam (NL), Atlanta (US), Frankfurt (DE), London (UK), Paris (FR), Singapore (SG), Sydney (AU), Tokyo (JP), Toronto (CA). Company registered in an undisclosed location. Large Storage offered in 5 locations, may be suitable for full nodes. Payment via BTCPayServer or manual payment (accepts BTC, ETH). Willing to do custom configurations or payment via alternate methods. Anonymous/pseudonymous signup OK, provided you provide a working email address.
NetNexus - Locations: Virginia (US), Ohio (US), California (US), Oregon (US), Mumbai (IN), Osaka (JP), Seoul (KR), Singapore (SG), Sydney (AU), Tokyo (JP), Central (CA), Frankfurt (DE), Ireland (IE), London (GB), Paris (FR), Stockholm (SE), Sao Paulo (BR). Company registered in Portland, Oregon. Tor traffic allowed. Asks for email address, name, phone number, etc on signup but doesn’t verify the information. Bitcoin payment with Plisio. No Google Captchas. Large Storage, maybe suitable for full nodes.
Gigablits - Locations: Amsterdam (NL), Bangalore (IN), Frankfurt (DE), London (UK), New York (US), San Francisco (US), Singapore (SG), Sydney (AU), Toronto (CA). Company registered in ???. DigitalOcean reseller. Anonymity focused, no personal information required. Payments accepted via Plisio. User reports they took payment but did not deliver service or respond to tickets, business may be defunct.
VPSBroker - Locations: Amsterdam (NL), Atlanta (US), Bangalore (IN), Chicago (US), Dallas (US), Delhi NCR (IN), Frankfurt (DE), Honolulu (US), Johannesburg (ZA), London (UK), Los Angeles (US), Madrid (ES), Manchester (UK), Melbourne (AU), Mexico City (MX), Miami (US), Mumbai (IN), New York (US), Osaka (JP), Paris (FR), Santiago (CL), São Paulo (BR), Seattle (US), Silicon Valley (US), Singapore (SG), Stockholm (SE), Sydney (AU), Tel Aviv (IL), Tokyo (JP), Toronto (CA), Warsaw (PL), Seoul (KR). Company registered in ???. Signup over Tor ok, user reports no captchas or Maxmind/KYC. Accepts Bitcoin, Monero (XMR), and others. User reports the UI is really good. Disk space available up to 160GB.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
BrilliantHost - Locations: Washington, D.C. (US), California (US), Iowa (US), Toronto (CA), London (GB), Amsterdam (NL), Warsaw (PL), Paris (FR), Frankfurt (DE), Milan (IT), Vienna (AT), Sydney (AU), Hong Kong (HK), Stockholm (SE), Dubai (AE), São Paulo (BR). Company registered in Wyoming, United States. Tor traffic OK. No Google Captchas. Very privacy-and anonymity friendly, only an email is required. Processes crypto payments manually via their support team. Advertises high performance at low prices.
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
NetNexus - Locations: Virginia (US), Ohio (US), California (US), Oregon (US), Mumbai (IN), Osaka (JP), Seoul (KR), Singapore (SG), Sydney (AU), Tokyo (JP), Central (CA), Frankfurt (DE), Ireland (IE), London (GB), Paris (FR), Stockholm (SE), Sao Paulo (BR). Company registered in Portland, Oregon. Tor traffic allowed. Asks for email address, name, phone number, etc on signup but doesn’t verify the information. Bitcoin payment with Plisio. No Google Captchas. Large Storage, maybe suitable for full nodes.
VPSBroker - Locations: Amsterdam (NL), Atlanta (US), Bangalore (IN), Chicago (US), Dallas (US), Delhi NCR (IN), Frankfurt (DE), Honolulu (US), Johannesburg (ZA), London (UK), Los Angeles (US), Madrid (ES), Manchester (UK), Melbourne (AU), Mexico City (MX), Miami (US), Mumbai (IN), New York (US), Osaka (JP), Paris (FR), Santiago (CL), São Paulo (BR), Seattle (US), Silicon Valley (US), Singapore (SG), Stockholm (SE), Sydney (AU), Tel Aviv (IL), Tokyo (JP), Toronto (CA), Warsaw (PL), Seoul (KR). Company registered in ???. Signup over Tor ok, user reports no captchas or Maxmind/KYC. Accepts Bitcoin, Monero (XMR), and others. User reports the UI is really good. Disk space available up to 160GB.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
BrilliantHost - Locations: Washington, D.C. (US), California (US), Iowa (US), Toronto (CA), London (GB), Amsterdam (NL), Warsaw (PL), Paris (FR), Frankfurt (DE), Milan (IT), Vienna (AT), Sydney (AU), Hong Kong (HK), Stockholm (SE), Dubai (AE), São Paulo (BR). Company registered in Wyoming, United States. Tor traffic OK. No Google Captchas. Very privacy-and anonymity friendly, only an email is required. Processes crypto payments manually via their support team. Advertises high performance at low prices.
ServerMath - Locations: Amsterdam (NL), Hong Kong (HK), Madrid (ES), Seoul (KR), Dallas (TX), Istanbul (TR), Manila (PH), Singapore (SG), Dubai (AE), Lagos (NG), Miami (US), Tokyo (JP), Frankfurt (DE), London (UK), Moscow (RU), Warsaw (PL). Company registered in ???. Accepts Bitcoin via BTCPayServer. Willing to consider payment via other cryptocurrencies on request. Does not require KYC or check identity. Happy to arrange custom server configurations (e.g GPUs, high bandwidth servers). Affiliated with RatioServer. Website does not work when visited from some IP addresses
GlobalDataServer - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), Montreal (CA), New York (US), Seattle (US), Vancouver (CA), Washington DC (US), Amsterdam (NL), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Frankfurt (DE), London (UK), Madrid (ES), Milan (IT), Moscow (RU), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Vienna (AT), Vilnius (LT), Warsaw (PL), Zurich (CH), Bursa (TR), Hong Kong (HK), Singapore (SG), Tokyo (JP), Sydney (AU), Johannesburg (ZA). Company registered in Las Vegas (US). Dedicated servers in 100+ locations. Has high bandwidth 20GBps dedicated servers and can do custom configuration. Tor friendly. Contact them directly to arrange BTC payment. User reports they are likely connected to AllServerHost. Use code BITCOINVPS for a 10% discount on first order
ZappieHost - Locations: New Zealand (NZ), South Africa (ZA), Valdivia (CL). Company registered in US.
Web4Africa - Locations: Ghana, Kenya, Nigeria (NG), South Africa (ZA). Company registered in South Africa.
Melbicom - Locations: Riga (LV), Amsterdam (NL), Warsaw (PL), Moscow (RU), Palermo (IT), Vilnius (LT), Madrid (ES), Sofia (BG), Lagos (NG), Singapore (SG), Fujairah (AE), Atlanta (US), Los Angeles (US). Company registered in Lithuania. Windows and Linux VPS. Also offers CDN services. No Tor traffic allowed. They don’t ask for much personal information but don’t want anonymous signup, they may request ID verification. No illegal activities allowed. Bitcoin Lightning network (LN) payments supported. No Google Captchas. Large Storage servers are available. They support BGP sessions, colocations, and cloud services also.
VPSBroker - Locations: Amsterdam (NL), Atlanta (US), Bangalore (IN), Chicago (US), Dallas (US), Delhi NCR (IN), Frankfurt (DE), Honolulu (US), Johannesburg (ZA), London (UK), Los Angeles (US), Madrid (ES), Manchester (UK), Melbourne (AU), Mexico City (MX), Miami (US), Mumbai (IN), New York (US), Osaka (JP), Paris (FR), Santiago (CL), São Paulo (BR), Seattle (US), Silicon Valley (US), Singapore (SG), Stockholm (SE), Sydney (AU), Tel Aviv (IL), Tokyo (JP), Toronto (CA), Warsaw (PL), Seoul (KR). Company registered in ???. Signup over Tor ok, user reports no captchas or Maxmind/KYC. Accepts Bitcoin, Monero (XMR), and others. User reports the UI is really good. Disk space available up to 160GB.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
SporeStack - Locations: San Francisco/NYC (US), Toronto (CA), London (UK), Amsterdam (NL), Frankfurt (DE), Singapore (SG), Bangalore (IN). Company registered in Texas (US). Accountless VPS provider. Also takes Bcash / Bitcoin SV. API-only/no registration, servers on Digital Ocean, Vultur/Linode available on request, Tor-only servers in undisclosed location, onion service URL: http://spore64i5sofqlfz5gq2ju4msgzojjwifls7rok2cti624zyq3fcelad.onion/#ref=vps
Host4Coins - Locations: France (FR), Zurich (CH). Company registered in France(?). Only Bitcoin and Lightning Network (LN) payments. Anonymous signup encouraged (they do not verify email address validity). $2/mo discount for IPv6-only service. Run by https://twitter.com/ketominer
SporeStack - Locations: San Francisco/NYC (US), Toronto (CA), London (UK), Amsterdam (NL), Frankfurt (DE), Singapore (SG), Bangalore (IN). Company registered in Texas (US). Accountless VPS provider. Also takes Bcash / Bitcoin SV. API-only/no registration, servers on Digital Ocean, Vultur/Linode available on request, Tor-only servers in undisclosed location, onion service URL: http://spore64i5sofqlfz5gq2ju4msgzojjwifls7rok2cti624zyq3fcelad.onion/#ref=vps
Host4Coins - Locations: France (FR), Zurich (CH). Company registered in France(?). Only Bitcoin and Lightning Network (LN) payments. Anonymous signup encouraged (they do not verify email address validity). $2/mo discount for IPv6-only service. Run by https://twitter.com/ketominer
GlobalDataServer - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), Montreal (CA), New York (US), Seattle (US), Vancouver (CA), Washington DC (US), Amsterdam (NL), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Frankfurt (DE), London (UK), Madrid (ES), Milan (IT), Moscow (RU), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Vienna (AT), Vilnius (LT), Warsaw (PL), Zurich (CH), Bursa (TR), Hong Kong (HK), Singapore (SG), Tokyo (JP), Sydney (AU), Johannesburg (ZA). Company registered in Las Vegas (US). Dedicated servers in 100+ locations. Has high bandwidth 20GBps dedicated servers and can do custom configuration. Tor friendly. Contact them directly to arrange BTC payment. User reports they are likely connected to AllServerHost. Use code BITCOINVPS for a 10% discount on first order
LowEndSpirit - Locations: Rotterdam (NL), London (UK), Milan (IT), Phoenix/Kansas/Lenoir NC (US), Tokyo (JP), Falkenstein (DE), Sofia (BG), Sandefjord (NO), Reims (FR), Perth/Sydney (AU), Singapore. Company registered in ???. Now a directory site / forum for low cost hosting.
Ccihosting - Locations: Panama (PA). Company registered in Panama.
ClientVPS - Locations: Bahrain (BH), Ukraine (UA), Netherlands (NL), Panama (PA), Russia (RU), Singapore (SG), Hong Kong (HK), Iran (IR). Company registered in Russia or US, it’s unclear. “Bulletproof” hosting provider.
Servting - Locations: Netherlands (NL), India (IN), Germany (DE), London (UK), United States (US), Singapore (SG), Canada (CA), South Korea (KR), Australia (AU), Japan (JP), Ireland (IE), France (FR), Sweden (SE), Spain (ES), Mexico (MX), Brazil (BR), Poland (PL). Company registered in United States. Currently reselling Digital Ocean, AWS Lightsail and Vultr. BTCPayServer as payment gateway. Encourage anonymous sign-up. Provider notes: “TOR and VPNs allowed, we do not use any fraud detection software such as Maxmind. A real email address is encouraged for correspondence but not a requirement . We offer block storage upgrades upon request. We do not check identities or perform any verification, if payment is successful you get a server!”
BitHost - Locations: All Digital Ocean/Linode/Hetzner/Vultr. Company registered in ???. Bitcoin-accepting front end for renting servers from Digital Ocean/Linode/Hetzner/Vultr
BitLaunch - Locations: DigitalOcean, Vultr, Linode, Netherlands (NL), United States (US), United Kingdom (UK). Company registered in Unknown. Cryptocurrency payment front-end to Digital Ocean/Vultr/Linode. User reprts they also run their own infrastructure with their own ASN
Bizcloud - Locations: Everywhere DigitalOcean has presence. Company registered in Malaysia. DigitalOcean reseller. Accepts BTC, LTC, ETH, XRP, BCH.
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
Gigablits - Locations: Amsterdam (NL), Bangalore (IN), Frankfurt (DE), London (UK), New York (US), San Francisco (US), Singapore (SG), Sydney (AU), Toronto (CA). Company registered in ???. DigitalOcean reseller. Anonymity focused, no personal information required. Payments accepted via Plisio. User reports they took payment but did not deliver service or respond to tickets, business may be defunct.
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
Justhost - Locations: Russia (RU). Company registered in Russia. Selling VDS
Skhron - Locations: Warsaw (PL). Company registered in Estonia. Equipment located at Equinix WA3. Bitcoin, Monero (XMR), TRX, USDT/TRC20, LTC accepted using self-hosted BTCPayServer (BTC) and BitCartCC (other coins). Lightning Network (LN) payments supported. Tor traffic allowed. Only a valid email is required, they don’t check other user-provided personal info unless you pay with fiat. No KYC and no error prone fraud protection to cancel your order unexpectedly. Captchas are standard pictures or hCaptcha. Offers a low-end KVM VPS for 1.15 EUR/month. Onion service at http://ufcmgzuawelktlvqaypyj4efjonbzleoketixdmtzidvfg254gfwyuqd.onion/
MrVM - Locations: Sweden (SE). Company registered in Sweden. No Tor traffic allowed
LowEndSpirit - Locations: Rotterdam (NL), London (UK), Milan (IT), Phoenix/Kansas/Lenoir NC (US), Tokyo (JP), Falkenstein (DE), Sofia (BG), Sandefjord (NO), Reims (FR), Perth/Sydney (AU), Singapore. Company registered in ???. Now a directory site / forum for low cost hosting.
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
LowEndSpirit - Locations: Rotterdam (NL), London (UK), Milan (IT), Phoenix/Kansas/Lenoir NC (US), Tokyo (JP), Falkenstein (DE), Sofia (BG), Sandefjord (NO), Reims (FR), Perth/Sydney (AU), Singapore. Company registered in ???. Now a directory site / forum for low cost hosting.
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
LowEndSpirit - Locations: Rotterdam (NL), London (UK), Milan (IT), Phoenix/Kansas/Lenoir NC (US), Tokyo (JP), Falkenstein (DE), Sofia (BG), Sandefjord (NO), Reims (FR), Perth/Sydney (AU), Singapore. Company registered in ???. Now a directory site / forum for low cost hosting.
Hostiko - Locations: Kyiv (UA), Falkenstein (DE), Warsaw (PL). Company registered in Ukraine. Accepts BTC, XMR, many others via NOWPayments (no KYC and numerous altcoins). Anonymous sign-up/signup via Tor is allowed. They actively monitor their network for abuse and react accordingly.
Private WebHost - Locations: Vienna (AT), Helsinki (FI), Frankfurt (DE), Netherlands (NL), Moscow (RU), Stockholm (SE), Zurich (CH), Paris (FR), Los Angeles (US). Company registered in Switzerland. Privacy/anonymity-focused hoster. Only an email required at signup, Signup via VPNs, proxies, and Tor allowed, payments via NOWPayments, CoinPayments.net. Lightning Network (LN) payments via CoinPayments. Working on self/hosted payments. The Swiss dedicated servers are Large Storage and suitable for Bitcoin full nodes. All servers can be used for Tor nodes (exit nodes allowed if you block port 25). Netherlands VPS servers are Large Storage. No Google Captcha. Support via tickets or encrypted email. Dedicated servers in Switzerland, working on more locations. Use promo code BITCOINVPS for 10% off. Very responsive support.
Opera VPS - Locations: London (UK), Frankfurt (DE) , Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Montreal (CA), Amsterdam (NL), Paris (FR), Tokyo (JP). Company registered in US (Washington state). Anonymous signup OK, Tor allowed, Lightning Network (LN) payments via Jeeb
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
PrivateAlps - Locations: Switzerland (CH). Company registered in Panama. Networking provided by Ipconnect (Seychelles). Tor traffic and anonymous signup OK. No LN payment. 10% discount if you enter the affiliate 5DBKR when ordering
VSYS - Locations: Ukraine (UA), Netherlands (NL). Company registered in Kyiv, Ukraine. Anonymous signup and Tor traffic OK. States they use Bitcoin Core to process BTC payments directly, LTC and Doge via their billing software.
HostZealot - Locations: Amsterdam (NL), London (UK), Stockholm (SE), Warsaw (PL), Limassol (CY), Tallinn (EE), Ashburn (US), Chicago (US), Dallas (US), Seattle (US), Toronto (CA), Brussels (BE), Tel Aviv (IL), Hong Kong (HK), Dusseldorf (DE), Tbilisi (GE). Company registered in Bulgaria. Provider states they are Tor and anonymity friendly as long as you do not violate their ToS. All their VPS instances use SSDs, their Poland and Netherlands locations offer NVMe also. User reports they do not allow registration from Protonmail email addresses.
RackNerd - Locations: Los Angeles (US), Utah (US), Dallas (US), New York (US), New Jersey (US), Seattle (US), Montreal (CA), London (UK), Amsterdam (NL), Chicago (US), San Jose (US), Atlanta (US), Tampa (US), Ashburn (US), Strasbourg (FR), Frankfurt (DE), Singapore (SG). Company registered in United States. Accepts BTC, LTC, ETH, ZEC. No Lightning Network. User reports good service and responsive support. User reports they use Coinbase Commerce
BlueVPS - Locations: Amsterdam (NL), Limassol (CY), Gravelines (FR), Singapore (SG), Sofiya (BG), London (UK), Ashburn (US), Los Angeles (US), Atlanta (US), Frankfurt (DE), Palermo (IT), Tel Aviv (IL), Stockholm (SE), Toronto (CA), Tallinn (EE), Madrid (ES), Hong Kong (CN), Warsaw (PL), Sydney (AU), Fujairah (UAE). Company registered in Estonia. Payments via Coinpayments. Regarding anonymity they state “We require clients confirmation e-Mail or ID”. Provider has hardware in two different data centers at their Warsaw and London locations.
3v-hosting - Locations: Ukraine (UA). Company registered in Ukraine. Tor traffic allowed unless backbone provider objects. User data required at signup (not anonymous)
Zak Servers - Locations: Bulgaria (BG), Ukraine (UA), Netherlands (NL), Switzerland (CH), Romania (RO), Russia (RU), Malaysia (MY). Company registered in Singapore. Privacy-focused dedicated server provider, anonymous/Tor signup/Tor traffic OK. Payments processed by Blockonomics
Eldernode - Locations: Chicago (US), San Jose (US), New York (US), Denmark (DK), Netherlands (NL), Manchester (UK), France (FR), Germany (DE), Canada. Company registered in Lithuania .
Shock Hosting - Locations: Piscataway/New Jersey (US), Los Angeles (US), Chicago (US), Dallas (US), Jacksonville (US), Denver (US), Seattle (US), Maidenhead (UK), Amsterdam (NL), Sydney (AU), Tokyo (JP), Singapore (SG). Company registered in United States.
Cinfu - Locations: Germany (DE), Bulgaria (BG), France (FR), Netherlands (NL), US. Company registered in Seychelles. Anonymous signup discouraged (automated fraud checks). No signup over Tor (website currently blocks Tor users entirely). User reports their datacentres may de-prioritise Bitcoin related traffic (and/or other large data transfers) resulting in extremely long full node sync times (weeks, single kbps bandwidth) after an initial burst for about 15% of the BTC blockchain
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
LegionBox - Locations: US, Switzerland (CH), Germany (DE), Russia (RU). Company registered in Australia. Anonymous signup discouraged (automated fraud checks)
THC Servers - Locations: Romania (RO), Canada. Company registered in United States. Supports Lightning Network (LN)
ServerMath - Locations: Amsterdam (NL), Hong Kong (HK), Madrid (ES), Seoul (KR), Dallas (TX), Istanbul (TR), Manila (PH), Singapore (SG), Dubai (AE), Lagos (NG), Miami (US), Tokyo (JP), Frankfurt (DE), London (UK), Moscow (RU), Warsaw (PL). Company registered in ???. Accepts Bitcoin via BTCPayServer. Willing to consider payment via other cryptocurrencies on request. Does not require KYC or check identity. Happy to arrange custom server configurations (e.g GPUs, high bandwidth servers). Affiliated with RatioServer. Website does not work when visited from some IP addresses
FlokiNET - Locations: Romania (RO), Iceland (IS), Finland (FI), Netherlands (NL). Company registered in Iceland. Free speech-focused service, Tor friendly. Includes (potentially outdated) OpenBSD images which must be manually installed via VNC. Anonymous signup OK, only valid email address is required. Accepts Bitcoin and XMR via Coinpayments. Allows customizing dedicated servers, including with Large Storage suitable for full nodes. This website is currently hosted on Flokinet
Qhoster - Locations: UK, US, Canada (CA), Bulgaria (BG), Lithuania (LT), France (FR), Germany (DE), Netherlands (NL), Switzerland (CH). Company registered in ???. Google captcha
GlobalDataServer - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), Montreal (CA), New York (US), Seattle (US), Vancouver (CA), Washington DC (US), Amsterdam (NL), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Frankfurt (DE), London (UK), Madrid (ES), Milan (IT), Moscow (RU), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Vienna (AT), Vilnius (LT), Warsaw (PL), Zurich (CH), Bursa (TR), Hong Kong (HK), Singapore (SG), Tokyo (JP), Sydney (AU), Johannesburg (ZA). Company registered in Las Vegas (US). Dedicated servers in 100+ locations. Has high bandwidth 20GBps dedicated servers and can do custom configuration. Tor friendly. Contact them directly to arrange BTC payment. User reports they are likely connected to AllServerHost. Use code BITCOINVPS for a 10% discount on first order
NiceVPS - Locations: Netherlands (NL). Company registered in Dominica. Minimal registration data and Tor friendly. Bulletproof DDoS-protected hosting available. Also provides confidential domains. Will offer hosting in Switzerland (CH) soon.
BlazingFast - Locations: Netherlands (NL). Company registered in Netherlands. High performance servers
ThunderVM - Locations: Germany (DE), United States (US), Iceland (IS), Switzerland (CH), Netherlands (NL), France (FR), Italy (IT), United Kingdom (UK), Lithuania (LT), Poland (PL). Company registered in italy. Ok with hosting full nodes and Tor relays, but not Tor exit nodes, or (on VPS) mining cryptocurrency. Uses hCaptcha. Provider states that all their servers/hypervisors are installed and encrypted by them for user security. Uses BTCPayServer and self-hosted Monero (XMR) payments. Accepts Lightning Network (LN) payments via NowPayments
Cockbox - Locations: Romania (RO). Company registered in Seychelles. Servers with cocks. Tor and anonymity-friendly. Onion URL: http://dwtqmjzvn2c6z2x462mmbd34ugjjrodowtul4jfbkexjuttzaqzcjyad.onion/?r=3033
Ahost - Locations: Dubai (AE), Vienna (AT), Sydney (AU), Brussels (BE), Sofia (BG), Zurich (CH), Prague (CZ), Copenhagen (DK), Seville (ES), Thessaloniki (GR), Kwai Chung (HK), Zagreb (HR), Budapest (HU), Tel Aviv (IL), Hafnarfjordur (IS), Milan (IT), Tokyo (JP), Vilnius (LT), Riga (LV), Chisinau (MD), Skopje (MK), Oslo (NO), Warsaw (PL), Belgrade (RS), Bucharest (RO), Moscow (RU), Stockholm (SE), Ljubljana (SI). Company registered in Estonia. No anonymous signup. No Tor or spam allowed. Payments via Payeer. KVM virtualization, Gigabit speeds for every VPS. They do NOT want anonymous signups or Tor traffic. User reports they ask for KYC (scan of government ID) after payment. Google Captchas
Hostingby.Design - Locations: Germany (DE), Netherlands (NL). Company registered in Denmark. Reseller / crypto front-end for Hetzner, Leaseweb, NFOrce. Large Storage, may be suitable for running full nodes. Google Captchas
AtomicNetworks - Locations: Eygelshoven (NL), Chicago (US), Miami (US), Los Angeles (US). Company registered in Delware, United States. Crypto payments through Coinbase Wallets, samller altcoins via NowPayments. Tor traffic OK. Uses Google Captchas. Asks for personal information but you can write whatever you like.
AlexHost - Locations: Tallbert (SE), Moldova (MD), Sofia (BG), Netherlands (NL). Company registered in Moldova. Email hosting included with shared web hosting service. Operates through AS200019, with own datacenter, network and hardware in the Republic of Moldova. Domain registration via OpenSRS/Tucows. They welcome people using their VPS for VPN endpoints. No KYC unless the payment gateway (e.g Paypal) asks for it (so pay with crypto). Doesn’t verify the personal data you give them otherwise. Tor bridges and relays are fine, Tor exit nodes are not allowed. Bitcoin payments accepted via BTCPayServer. Monero and other cryptocurrencies also accepted. May use Google Captchas (via Hostbill). Dedicated servers can be customized so they have Large Storage for running full nodes. Provider states they support freedom of speech and privacy.
HostStage - Locations: France (FR), Canada (CA), US. Company registered in France. Uses Coingate. Also provides shared web hosting. Anonymous sign up OK as long as no fraud, Tor traffic OK provided it is not used in a way that causes trouble
Justhost - Locations: Russia (RU). Company registered in Russia. Selling VDS
IP-Connect - Locations: Ukraine (UA). Company registered in Ukraine. Runs their own datacenter. Tor-friendly. Minimal registration. Crypto payments accepted via payment gateway. Doesn’t require KYC, allows TOR/proxy. Criminal activity prohibited. All VPS are KVM-based, 100% SSD, recent Intel processors, redundant high quality uplinks, lowest latency possible, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random generators for fast entropy, noVNC, images of common Linux distributions for fully automated installation, bring your own .iso (also Windows etc. allowed). Now additionally accepts payments via Nowpayments.io, which supports hundreds of different cryptocurrencies. Use promocode “bitcoin-vps2022” for -10% discount
SeiMaxim - Locations: Almere (NL), Amsterdam (NL), Los Angeles (US). Company registered in Netherlands. Anonymous signup allowed. Bitcoin full nodes are allowed. Also offers GPU mining servers, domains, shared hosting, and HTTP/SOCKS proxies. Uses Coinbase payment gateway
ForexVPS - Locations: New York (US), London (UK), Manchester (UK), Zurich (CH), Amsterdam (NL), Frankfurt (DE), Singapore (SG), Tokyo (JP). Company registered in Hong Kong. Lightning Network (LN) payment support
Internoc24 - Locations: Czech Republic (CZ), Sweden (SE), UK, Finland (FI), Russia (RU). Company registered in US/CZ. Offers both OpenVZ and KVM. Advertises anonymous signup
VPSGOD - Locations: Germany (DE), US, France (FR), Netherlands (NL), United States (US). Company registered in US. Google captcha
Noez - Locations: Frankfurt (DE). Company registered in Germany. Large Storage, may be suitable for running Bitcoin full nodes
XetHost - Locations: Budapest (HU). Company registered in Hungary. DevOps-focused. Accepts many different cryptocurrencies via CoinGate. Asks for phone number and email address.
Dedimax - Locations: 120+ worldwide: France (FR), Netherlands (NL), United States (US), Canada (CA), Portugal (PT), Lithuania (LT), Moldova (MD), Spain (ES), Bulgaria (BG), Germany (DE), Austria (AT), and many many more…. Company registered in Belgium. User reports Tor signup doesn’t work
HostSailor - Locations: Romania (RO), Netherlands (NL). Company registered in UAE. Lightning network (LN) via Coingate. Google Captchas. User reports they log you out constantly if using Tor.
OrangeWebsite - Locations: Iceland (IS). Company registered in Iceland. Asks for very minimal user information, seems to take security seriously
VPSBit - Locations: Hong Kong (HK), Lithuania (LT). Company registered in Hong Kong & Lithuania.
Coin.Host / Coinshost - Locations: Zurich (CH). Company registered in Switzerland. Does not provide anonymous hosting, will ask for detailed information about what you are hosting on their servers. Will not refund any deposits made prior to this. We recommend clarifying your proposed usage with them before depositing money with them.
Hostkey - Locations: US, Netherlands (NL), Russia (RU). Company registered in Netherlands. User reports they do not allow registration from Protonmail email addresses
Crowncloud - Locations: Frankfurt (DE), Los Angeles (US). Company registered in Australia.
Hostwinds - Locations: US, Netherlands (NL). Company registered in US.
CryptoHO.ST - Locations: Romania (RO). Company registered in Romania (?). Supports Lightning Network (LN), Monero, and 300+ altcoins
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
SuperBitHost - Locations: Bulgaria (BG), Germany (DE), Netherlands (NL), Luxembourg (LU), Malaysia (MY) Russia (RU), Singapore (SG), Switzerland (CH). Company registered in ???. uses Google captchas
Aurologic (Fastpipe) - Locations: Combahton datacenter in Frankfurt, Germany (DE). Company registered in Germany. Large Storage / Block storage offered, may be suitable for running Bitcoin full nodes. Used to be Fastpipe.io, is now Aurologic. If they still take Bitcoin.
Sered - Locations: Madrid (ES), Barcelona (ES). Company registered in Spain. Website may block Tor users (Google captcha). Use coupon code VQSZANRO for a 2 month discount.
Javapipe (now Mochahost) - Locations: Chicago (US), Amsterdan (NL), Bucharest (RO). Company registered in ???.
Vultr - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Seattle (US), Silicon Valley (US), Toronto (CA), Amsterdam (NL), Frankfurt (DE), London (UK), Paris (FR), Tokyo (JP), Singapore (SG), Sydney (AU). Company registered in US. Reader reports strong anti-privacy policies: users must make credit card or PayPal payment before they are allowed to make Bitcoin deposits, and they use BitPay (which requires government ID/etc). Reader recommends using a Vultr reseller (e.g Bithost)
Serverhub - Locations: Chicago (US), Seattle (US), New York (US), Dallas (US), Phoneix (US), Frankfurt (DE). Company registered in US. Large Storage, may be suitable for running Bitcoin full nodes
DeinServerHost - Locations: Combahton datacenter in Frankfurt, Germany (DE). Company registered in Germany. Bitcoin & Lightning Network (LN) via Coingate, anonymous/pseudonymous signup over Tor allowed. Very flexible server configuration (set RAM/disk/# cores independently). Large Storage, may be suitable for running Bitcoin full nodes. Offers one-click DdoS protection via Path.net
Terrahost - Locations: Sandefjord (NO). Company registered in Norway. Runs their own datacenter. Good reputation in the OpenBSD community (but does not offer OpenBSD support natively, you must bring your own install image). Their website claims to use BitPay but it’s not true, they actually use Coingate/BTCPayServer. Sometimes asks for full KYC at signup (e.g if you signed up via Tor)
ClientVPS - Locations: Bahrain (BH), Ukraine (UA), Netherlands (NL), Panama (PA), Russia (RU), Singapore (SG), Hong Kong (HK), Iran (IR). Company registered in Russia or US, it’s unclear. “Bulletproof” hosting provider.
ServerRoom - Locations: New York (US), Bucharest (RO), San Francisco (US), Miami (US), Amsterdam (NL). Company registered in New York (US). Same management as Primcast. Self-hosted Bitcoin payment processing, no Lightning yet but is planned soon. Anonymous signup and Tor ok. Offers Bitcoin full nodes as dedicated servers, also GPU dedicated servers.
Primcast - Locations: New York (US), Bucharest (RO), San Francisco (US), Miami (US), Amsterdam (NL). Company registered in New York (US). Streaming-focused provider, advertises low latency routes. Same management as ServerRoom. Self-hosted Bitcoin payment processing, no Lightning yet but is planned soon. Anonymous signup and Tor ok. Offers Bitcoin full nodes as dedicated servers, also GPU dedicated servers.
Privex - Locations: Sweden (SE), Netherlands (NL), Germany (DE), Finland (FI), United States (US), Japan (JP), Canada (CA). Company registered in Belize. Owns their own hardware and network at their SE / NL regions. Resells Hetzner in DE / FI. Resells Dacentec+Reliablesite in US. Resells Vultr in JP/CA. Privacy focused, anonymous/pseudonymous sign up encouraged. No captchas/cloudflare/analytics. Payments processed by their own in-house solution. Allows hosting Tor exit nodes / public VPNs in SE/NL locations and Tor/I2P relays in all locations except JP/CA. Runs their own Tor nodes to support the network. Ordering is possible with JavaScript disabled. Supports Bring-Your-Own-IP and colocation in SE/NL. Very flexible and willing to consider special requests. Onion service: http://privex3guvvasyer6pxz2fqcgy56auvw5egkir6ykwpptferdcb5toad.onion/ and I2P service: http://privex.i2p/
AnyColo - Locations: Romania (RO). Company registered in Romania. Accepts BTC, XMR. Payments via own BTCPayServer instance. Anonymous signup allowed. According to the company, “our TOS is simple: no abuse and no complaints.”
RatioServer - Locations: Amsterdam (NL), Budapest (HU), Copenhagen (DK), Dallas (US), Dublin (IE), Frankfurt (DE), London (UK), Los Angeles (US), Madrid (ES), Miami (US), Montreal (CA), New York (US), Paris (FR), Prague (CZ), Rome (IT), Singapore (SG), Sofia (BG), Sydney (AU), Tokyo (JP), Zurich (CH) and more. Company registered in ???. Most locations have unmetered dedicated servers and custom-built server options available. Tor- and anonymity-friendly. Does not verify email address validity, but encourages people to sign up with a working email address. Uses their own in-house BTC/ETH payment processor
Aaroli - Locations: Amsterdam (NL), Atlanta (US), Frankfurt (DE), London (UK), Paris (FR), Singapore (SG), Sydney (AU), Tokyo (JP), Toronto (CA). Company registered in an undisclosed location. Large Storage offered in 5 locations, may be suitable for full nodes. Payment via BTCPayServer or manual payment (accepts BTC, ETH). Willing to do custom configurations or payment via alternate methods. Anonymous/pseudonymous signup OK, provided you provide a working email address.
DataClub - Locations: Meppel/Netherlands (NL), Stockholm (SE), Riga/Latvia (LV). Company registered in Belize/Cyprus/UK. Dedicated servers in Latvia. May require KYC
Hostiquette - Locations: Amsterdam (NL), Frankfurt (DE), Helsinki (FI), London (UK), Moscow (RU), Paris (FR), Zurich (CH). Company registered in ???. Tor and anonymity-friendly. Using BTCPay Server for Bitcoin payments. Can accept other cryptocurrencies if you contact them. Emai addresses are not verified but using a valid email is recommended for communications. Custom servers are available if you contact them.
DediStart - Locations: Bulgaria (BG). Company registered in Cyprus. Payments via Coinify. Sister company of VPSAG (for VPS). Blocks Tor users.
Host.ag - Locations: Bulgaria (BG). Company registered in Bulgaria. Blocks Tor users. Uses self-hosted payment gateway. Large Storage, probably suitable for full nodes. Lets you customise the server extensively before ordering. Offers lease-to-own where you own the server after a certain number of months, in exchange for a higher per-month rate.
Ukrainian Data Network (UDN) - Locations: Kyiv/Kiev (UA). Company registered in Ukraine. Anonymous signup OK, even email address is optional. Accepts BTC and Monero/XMR. Uses their own internal payment system, no 3rd party payment processor
Zergrush Hosting - Locations: Bucharest (RO). Company registered in Romania. Payments via uTrust, which supports Lightning Network (LN) payments. No Tor exits allowed. Do ask for personal information at signup.
IncogNET - Locations: Netherlands (NL), Idaho (US). Company registered in Wyoming, United States. Accepts Bitcoin via BTCPayServer (and other cryptocurrencies also). No personal information required to sign up, only an email address (which isn’t verified). Ordering via Tor/VPN is OK. Large Storage available on a case-by-case basis, contact them to arrange it. Uses Google Captchas (reCaptcha). Also does anonymous domain registration
HostSlick - Locations: Netherlands (NL). Company registered in Germany. Accepts Bitcoin via Coinify. Has internal KYC checks - your server can be suspended if you registered via Proxy/VPN. Google captchas. User reports you may be able to register via VPN if you open a support ticket to manually deposit BTC. We recommend testing with small amounts of money and low cost services first.
Webconn Technology - Locations: Netherlands (NL), United States (US), Italy (IT), Japan (JP), France (FR). Company registered in Pakistan. Offers GPU servers. Unlimited traffic. They don’t care what information you provide at signup. Payments via Coinbase or direct transfer to wallet. Google captchas. Linked to Seimaxim
Melbicom - Locations: Riga (LV), Amsterdam (NL), Warsaw (PL), Moscow (RU), Palermo (IT), Vilnius (LT), Madrid (ES), Sofia (BG), Lagos (NG), Singapore (SG), Fujairah (AE), Atlanta (US), Los Angeles (US). Company registered in Lithuania. Windows and Linux VPS. Also offers CDN services. No Tor traffic allowed. They don’t ask for much personal information but don’t want anonymous signup, they may request ID verification. No illegal activities allowed. Bitcoin Lightning network (LN) payments supported. No Google Captchas. Large Storage servers are available. They support BGP sessions, colocations, and cloud services also.
KernelHost - Locations: Frankfurt (DE). Company registered in Austria. Bitcoin payments via BTCPayServer. KVM based servers. Servers at Maincubes datacenter
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
SnowCore - Locations: Amsterdam (NL), Salt Lake City (US). Company registered in ???. Uses a Mullvad-style token login system so they don’t collect any personal information at all. Payments via NOWpayments. Cloudflare captchas. Dedicated servers available with 1TB SSDs for 30 EUR one time payment in some locations, might be useful as Large Storage servers for full nodes. Tor is allowed and fully supported.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
RedSwitches - Locations: Singapore (SG), Miami (US), Germany (DE), Switzerland (CH), Australia (AU), Mumbai (IN), Tokyo (JP), Netherlands (NL), Hong Kong (HK), San Francisco (US), Canada (CA), London (UK), Washington DC (US). Company registered in Singapore.
Private WebHost - Locations: Vienna (AT), Helsinki (FI), Frankfurt (DE), Netherlands (NL), Moscow (RU), Stockholm (SE), Zurich (CH), Paris (FR), Los Angeles (US). Company registered in Switzerland. Privacy/anonymity-focused hoster. Only an email required at signup, Signup via VPNs, proxies, and Tor allowed, payments via NOWPayments, CoinPayments.net. Lightning Network (LN) payments via CoinPayments. Working on self/hosted payments. The Swiss dedicated servers are Large Storage and suitable for Bitcoin full nodes. All servers can be used for Tor nodes (exit nodes allowed if you block port 25). Netherlands VPS servers are Large Storage. No Google Captcha. Support via tickets or encrypted email. Dedicated servers in Switzerland, working on more locations. Use promo code BITCOINVPS for 10% off. Very responsive support.
Opera VPS - Locations: London (UK), Frankfurt (DE) , Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Montreal (CA), Amsterdam (NL), Paris (FR), Tokyo (JP). Company registered in US (Washington state). Anonymous signup OK, Tor allowed, Lightning Network (LN) payments via Jeeb
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
HostZealot - Locations: Amsterdam (NL), London (UK), Stockholm (SE), Warsaw (PL), Limassol (CY), Tallinn (EE), Ashburn (US), Chicago (US), Dallas (US), Seattle (US), Toronto (CA), Brussels (BE), Tel Aviv (IL), Hong Kong (HK), Dusseldorf (DE), Tbilisi (GE). Company registered in Bulgaria. Provider states they are Tor and anonymity friendly as long as you do not violate their ToS. All their VPS instances use SSDs, their Poland and Netherlands locations offer NVMe also. User reports they do not allow registration from Protonmail email addresses.
RackNerd - Locations: Los Angeles (US), Utah (US), Dallas (US), New York (US), New Jersey (US), Seattle (US), Montreal (CA), London (UK), Amsterdam (NL), Chicago (US), San Jose (US), Atlanta (US), Tampa (US), Ashburn (US), Strasbourg (FR), Frankfurt (DE), Singapore (SG). Company registered in United States. Accepts BTC, LTC, ETH, ZEC. No Lightning Network. User reports good service and responsive support. User reports they use Coinbase Commerce
BlueVPS - Locations: Amsterdam (NL), Limassol (CY), Gravelines (FR), Singapore (SG), Sofiya (BG), London (UK), Ashburn (US), Los Angeles (US), Atlanta (US), Frankfurt (DE), Palermo (IT), Tel Aviv (IL), Stockholm (SE), Toronto (CA), Tallinn (EE), Madrid (ES), Hong Kong (CN), Warsaw (PL), Sydney (AU), Fujairah (UAE). Company registered in Estonia. Payments via Coinpayments. Regarding anonymity they state “We require clients confirmation e-Mail or ID”. Provider has hardware in two different data centers at their Warsaw and London locations.
Eldernode - Locations: Chicago (US), San Jose (US), New York (US), Denmark (DK), Netherlands (NL), Manchester (UK), France (FR), Germany (DE), Canada. Company registered in Lithuania .
Shock Hosting - Locations: Piscataway/New Jersey (US), Los Angeles (US), Chicago (US), Dallas (US), Jacksonville (US), Denver (US), Seattle (US), Maidenhead (UK), Amsterdam (NL), Sydney (AU), Tokyo (JP), Singapore (SG). Company registered in United States.
Cinfu - Locations: Germany (DE), Bulgaria (BG), France (FR), Netherlands (NL), US. Company registered in Seychelles. Anonymous signup discouraged (automated fraud checks). No signup over Tor (website currently blocks Tor users entirely). User reports their datacentres may de-prioritise Bitcoin related traffic (and/or other large data transfers) resulting in extremely long full node sync times (weeks, single kbps bandwidth) after an initial burst for about 15% of the BTC blockchain
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
LegionBox - Locations: US, Switzerland (CH), Germany (DE), Russia (RU). Company registered in Australia. Anonymous signup discouraged (automated fraud checks)
THC Servers - Locations: Romania (RO), Canada. Company registered in United States. Supports Lightning Network (LN)
ServerMath - Locations: Amsterdam (NL), Hong Kong (HK), Madrid (ES), Seoul (KR), Dallas (TX), Istanbul (TR), Manila (PH), Singapore (SG), Dubai (AE), Lagos (NG), Miami (US), Tokyo (JP), Frankfurt (DE), London (UK), Moscow (RU), Warsaw (PL). Company registered in ???. Accepts Bitcoin via BTCPayServer. Willing to consider payment via other cryptocurrencies on request. Does not require KYC or check identity. Happy to arrange custom server configurations (e.g GPUs, high bandwidth servers). Affiliated with RatioServer. Website does not work when visited from some IP addresses
Qhoster - Locations: UK, US, Canada (CA), Bulgaria (BG), Lithuania (LT), France (FR), Germany (DE), Netherlands (NL), Switzerland (CH). Company registered in ???. Google captcha
GlobalDataServer - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), Montreal (CA), New York (US), Seattle (US), Vancouver (CA), Washington DC (US), Amsterdam (NL), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Frankfurt (DE), London (UK), Madrid (ES), Milan (IT), Moscow (RU), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Vienna (AT), Vilnius (LT), Warsaw (PL), Zurich (CH), Bursa (TR), Hong Kong (HK), Singapore (SG), Tokyo (JP), Sydney (AU), Johannesburg (ZA). Company registered in Las Vegas (US). Dedicated servers in 100+ locations. Has high bandwidth 20GBps dedicated servers and can do custom configuration. Tor friendly. Contact them directly to arrange BTC payment. User reports they are likely connected to AllServerHost. Use code BITCOINVPS for a 10% discount on first order
ThunderVM - Locations: Germany (DE), United States (US), Iceland (IS), Switzerland (CH), Netherlands (NL), France (FR), Italy (IT), United Kingdom (UK), Lithuania (LT), Poland (PL). Company registered in italy. Ok with hosting full nodes and Tor relays, but not Tor exit nodes, or (on VPS) mining cryptocurrency. Uses hCaptcha. Provider states that all their servers/hypervisors are installed and encrypted by them for user security. Uses BTCPayServer and self-hosted Monero (XMR) payments. Accepts Lightning Network (LN) payments via NowPayments
AtomicNetworks - Locations: Eygelshoven (NL), Chicago (US), Miami (US), Los Angeles (US). Company registered in Delware, United States. Crypto payments through Coinbase Wallets, samller altcoins via NowPayments. Tor traffic OK. Uses Google Captchas. Asks for personal information but you can write whatever you like.
WindowsVPSHost - Locations: Buffalo (US) . Company registered in Singapore .
Rad Web Hosting - Locations: Dallas TX (US). Company registered in United States. Datacenter located in a former Federal Reserve Bank building, highly secure
HostStage - Locations: France (FR), Canada (CA), US. Company registered in France. Uses Coingate. Also provides shared web hosting. Anonymous sign up OK as long as no fraud, Tor traffic OK provided it is not used in a way that causes trouble
SeiMaxim - Locations: Almere (NL), Amsterdam (NL), Los Angeles (US). Company registered in Netherlands. Anonymous signup allowed. Bitcoin full nodes are allowed. Also offers GPU mining servers, domains, shared hosting, and HTTP/SOCKS proxies. Uses Coinbase payment gateway
ForexVPS - Locations: New York (US), London (UK), Manchester (UK), Zurich (CH), Amsterdam (NL), Frankfurt (DE), Singapore (SG), Tokyo (JP). Company registered in Hong Kong. Lightning Network (LN) payment support
IndoVirtue - Locations: Singapore (SG), US. Company registered in Bali, Indonesia (?). No VPN/proxy during signup allowed
VPSGOD - Locations: Germany (DE), US, France (FR), Netherlands (NL), United States (US). Company registered in US. Google captcha
Dedimax - Locations: 120+ worldwide: France (FR), Netherlands (NL), United States (US), Canada (CA), Portugal (PT), Lithuania (LT), Moldova (MD), Spain (ES), Bulgaria (BG), Germany (DE), Austria (AT), and many many more…. Company registered in Belgium. User reports Tor signup doesn’t work
Namecheap - Locations: US. Company registered in US.
Hostkey - Locations: US, Netherlands (NL), Russia (RU). Company registered in Netherlands. User reports they do not allow registration from Protonmail email addresses
Crowncloud - Locations: Frankfurt (DE), Los Angeles (US). Company registered in Australia.
Hostwinds - Locations: US, Netherlands (NL). Company registered in US.
Mightweb - Locations: US. Company registered in US.
MeanServers - Locations: US. Company registered in US.
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
Javapipe (now Mochahost) - Locations: Chicago (US), Amsterdan (NL), Bucharest (RO). Company registered in ???.
Vultr - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Seattle (US), Silicon Valley (US), Toronto (CA), Amsterdam (NL), Frankfurt (DE), London (UK), Paris (FR), Tokyo (JP), Singapore (SG), Sydney (AU). Company registered in US. Reader reports strong anti-privacy policies: users must make credit card or PayPal payment before they are allowed to make Bitcoin deposits, and they use BitPay (which requires government ID/etc). Reader recommends using a Vultr reseller (e.g Bithost)
letbox - Locations: Los Angeles (US), Dallas (US). Company registered in Seattle (US). Large Storage, may be suitable for running Bitcoin full nodes
Serverhub - Locations: Chicago (US), Seattle (US), New York (US), Dallas (US), Phoneix (US), Frankfurt (DE). Company registered in US. Large Storage, may be suitable for running Bitcoin full nodes
ServerRoom - Locations: New York (US), Bucharest (RO), San Francisco (US), Miami (US), Amsterdam (NL). Company registered in New York (US). Same management as Primcast. Self-hosted Bitcoin payment processing, no Lightning yet but is planned soon. Anonymous signup and Tor ok. Offers Bitcoin full nodes as dedicated servers, also GPU dedicated servers.
Primcast - Locations: New York (US), Bucharest (RO), San Francisco (US), Miami (US), Amsterdam (NL). Company registered in New York (US). Streaming-focused provider, advertises low latency routes. Same management as ServerRoom. Self-hosted Bitcoin payment processing, no Lightning yet but is planned soon. Anonymous signup and Tor ok. Offers Bitcoin full nodes as dedicated servers, also GPU dedicated servers.
Privex - Locations: Sweden (SE), Netherlands (NL), Germany (DE), Finland (FI), United States (US), Japan (JP), Canada (CA). Company registered in Belize. Owns their own hardware and network at their SE / NL regions. Resells Hetzner in DE / FI. Resells Dacentec+Reliablesite in US. Resells Vultr in JP/CA. Privacy focused, anonymous/pseudonymous sign up encouraged. No captchas/cloudflare/analytics. Payments processed by their own in-house solution. Allows hosting Tor exit nodes / public VPNs in SE/NL locations and Tor/I2P relays in all locations except JP/CA. Runs their own Tor nodes to support the network. Ordering is possible with JavaScript disabled. Supports Bring-Your-Own-IP and colocation in SE/NL. Very flexible and willing to consider special requests. Onion service: http://privex3guvvasyer6pxz2fqcgy56auvw5egkir6ykwpptferdcb5toad.onion/ and I2P service: http://privex.i2p/
RatioServer - Locations: Amsterdam (NL), Budapest (HU), Copenhagen (DK), Dallas (US), Dublin (IE), Frankfurt (DE), London (UK), Los Angeles (US), Madrid (ES), Miami (US), Montreal (CA), New York (US), Paris (FR), Prague (CZ), Rome (IT), Singapore (SG), Sofia (BG), Sydney (AU), Tokyo (JP), Zurich (CH) and more. Company registered in ???. Most locations have unmetered dedicated servers and custom-built server options available. Tor- and anonymity-friendly. Does not verify email address validity, but encourages people to sign up with a working email address. Uses their own in-house BTC/ETH payment processor
Aaroli - Locations: Amsterdam (NL), Atlanta (US), Frankfurt (DE), London (UK), Paris (FR), Singapore (SG), Sydney (AU), Tokyo (JP), Toronto (CA). Company registered in an undisclosed location. Large Storage offered in 5 locations, may be suitable for full nodes. Payment via BTCPayServer or manual payment (accepts BTC, ETH). Willing to do custom configurations or payment via alternate methods. Anonymous/pseudonymous signup OK, provided you provide a working email address.
MadGenius - Locations: Minneapolis (US), Chicago (US), Ashburn (US). Company registered in Minnesota, US. Uses BitPay, but user reports that if you email their sales department they will give you a non-BitPay BTC address. User reports they do not require/verify personal info except for email address.
BreezeHost - Locations: Dallas TX (US), Charlotte NC (US). Company registered in United States. Accepts Bitcoin (and other cryptocurrencies) using Plisio, Lightning payments currently not supported. Personal information supplied at signup does not need to be accurate. Tor traffic is allowed.
VPS-mart / DatabaseMart - Locations: Dallas (US). Company registered in Dallas (US).
TechRich - Locations: Japan (JP), Korea (KR), Malaysia (MY), China (CN), Hong Kong (HK), United States (US), Thailand (TH). Company registered in Hong Kong. They ask for user information but don’t verify/require KYC if you pay by cryptocurrency. Tor traffic OK as long as you don’t get abuse/complaints. They can arrange dedicated fiber lines for each client at the HK location. Uses Coinpayments, Bitpay, and Payeer for payments, can arrange other payment methods as long as you are not sending from an OFAC-listed address. They accept Lightning Network (LN) payments
IncogNET - Locations: Netherlands (NL), Idaho (US). Company registered in Wyoming, United States. Accepts Bitcoin via BTCPayServer (and other cryptocurrencies also). No personal information required to sign up, only an email address (which isn’t verified). Ordering via Tor/VPN is OK. Large Storage available on a case-by-case basis, contact them to arrange it. Uses Google Captchas (reCaptcha). Also does anonymous domain registration
Webconn Technology - Locations: Netherlands (NL), United States (US), Italy (IT), Japan (JP), France (FR). Company registered in Pakistan. Offers GPU servers. Unlimited traffic. They don’t care what information you provide at signup. Payments via Coinbase or direct transfer to wallet. Google captchas. Linked to Seimaxim
Domains4Bitcoins - Locations: United States (US), India (IN). Company registered in United States. Payments via BitPay – KYC and BitPay account required to purchase
GoSSDHosting - Locations: United States (US), India (IN). Company registered in India.
CoinsHosting - Locations: New York (US). Company registered in Delaware, US. Tor traffic allowed only on dedicated servers. Doesn’t check the information you provide at signup (only asks for name and email). May require for KYC for suspicious or abusive customers but provider states they do so very rarely. Payments via CoinPayments and Coinify. Uses Google Captchas.
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
SnowCore - Locations: Amsterdam (NL), Salt Lake City (US). Company registered in ???. Uses a Mullvad-style token login system so they don’t collect any personal information at all. Payments via NOWpayments. Cloudflare captchas. Dedicated servers available with 1TB SSDs for 30 EUR one time payment in some locations, might be useful as Large Storage servers for full nodes. Tor is allowed and fully supported.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
RedSwitches - Locations: Singapore (SG), Miami (US), Germany (DE), Switzerland (CH), Australia (AU), Mumbai (IN), Tokyo (JP), Netherlands (NL), Hong Kong (HK), San Francisco (US), Canada (CA), London (UK), Washington DC (US). Company registered in Singapore.
ReliableSite - Locations: New York City metro (US), Miami (US), Los Angeles (US). Company registered in Miami, United States. Tor traffic not allowed. No anonymous signup. Bitcoin payments via BitPay (KYC required). No Google captchas (uses Turnstile). Large Storage servers available.
Opera VPS - Locations: London (UK), Frankfurt (DE) , Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Montreal (CA), Amsterdam (NL), Paris (FR), Tokyo (JP). Company registered in US (Washington state). Anonymous signup OK, Tor allowed, Lightning Network (LN) payments via Jeeb
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
HostZealot - Locations: Amsterdam (NL), London (UK), Stockholm (SE), Warsaw (PL), Limassol (CY), Tallinn (EE), Ashburn (US), Chicago (US), Dallas (US), Seattle (US), Toronto (CA), Brussels (BE), Tel Aviv (IL), Hong Kong (HK), Dusseldorf (DE), Tbilisi (GE). Company registered in Bulgaria. Provider states they are Tor and anonymity friendly as long as you do not violate their ToS. All their VPS instances use SSDs, their Poland and Netherlands locations offer NVMe also. User reports they do not allow registration from Protonmail email addresses.
RackNerd - Locations: Los Angeles (US), Utah (US), Dallas (US), New York (US), New Jersey (US), Seattle (US), Montreal (CA), London (UK), Amsterdam (NL), Chicago (US), San Jose (US), Atlanta (US), Tampa (US), Ashburn (US), Strasbourg (FR), Frankfurt (DE), Singapore (SG). Company registered in United States. Accepts BTC, LTC, ETH, ZEC. No Lightning Network. User reports good service and responsive support. User reports they use Coinbase Commerce
BlueVPS - Locations: Amsterdam (NL), Limassol (CY), Gravelines (FR), Singapore (SG), Sofiya (BG), London (UK), Ashburn (US), Los Angeles (US), Atlanta (US), Frankfurt (DE), Palermo (IT), Tel Aviv (IL), Stockholm (SE), Toronto (CA), Tallinn (EE), Madrid (ES), Hong Kong (CN), Warsaw (PL), Sydney (AU), Fujairah (UAE). Company registered in Estonia. Payments via Coinpayments. Regarding anonymity they state “We require clients confirmation e-Mail or ID”. Provider has hardware in two different data centers at their Warsaw and London locations.
Zak Servers - Locations: Bulgaria (BG), Ukraine (UA), Netherlands (NL), Switzerland (CH), Romania (RO), Russia (RU), Malaysia (MY). Company registered in Singapore. Privacy-focused dedicated server provider, anonymous/Tor signup/Tor traffic OK. Payments processed by Blockonomics
Shock Hosting - Locations: Piscataway/New Jersey (US), Los Angeles (US), Chicago (US), Dallas (US), Jacksonville (US), Denver (US), Seattle (US), Maidenhead (UK), Amsterdam (NL), Sydney (AU), Tokyo (JP), Singapore (SG). Company registered in United States.
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
ServerMath - Locations: Amsterdam (NL), Hong Kong (HK), Madrid (ES), Seoul (KR), Dallas (TX), Istanbul (TR), Manila (PH), Singapore (SG), Dubai (AE), Lagos (NG), Miami (US), Tokyo (JP), Frankfurt (DE), London (UK), Moscow (RU), Warsaw (PL). Company registered in ???. Accepts Bitcoin via BTCPayServer. Willing to consider payment via other cryptocurrencies on request. Does not require KYC or check identity. Happy to arrange custom server configurations (e.g GPUs, high bandwidth servers). Affiliated with RatioServer. Website does not work when visited from some IP addresses
GlobalDataServer - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), Montreal (CA), New York (US), Seattle (US), Vancouver (CA), Washington DC (US), Amsterdam (NL), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Frankfurt (DE), London (UK), Madrid (ES), Milan (IT), Moscow (RU), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Vienna (AT), Vilnius (LT), Warsaw (PL), Zurich (CH), Bursa (TR), Hong Kong (HK), Singapore (SG), Tokyo (JP), Sydney (AU), Johannesburg (ZA). Company registered in Las Vegas (US). Dedicated servers in 100+ locations. Has high bandwidth 20GBps dedicated servers and can do custom configuration. Tor friendly. Contact them directly to arrange BTC payment. User reports they are likely connected to AllServerHost. Use code BITCOINVPS for a 10% discount on first order
Mondoze - Locations: Cyberjaya Malaysia (MY). Company registered in Malaysia. Payments via Plisio. Dedicated server available if you contact them directly. Tor traffic OK as long as you conform to their TOS. Anonymous sign up OK. Large storage maybe available if you contact support.
Ahost - Locations: Dubai (AE), Vienna (AT), Sydney (AU), Brussels (BE), Sofia (BG), Zurich (CH), Prague (CZ), Copenhagen (DK), Seville (ES), Thessaloniki (GR), Kwai Chung (HK), Zagreb (HR), Budapest (HU), Tel Aviv (IL), Hafnarfjordur (IS), Milan (IT), Tokyo (JP), Vilnius (LT), Riga (LV), Chisinau (MD), Skopje (MK), Oslo (NO), Warsaw (PL), Belgrade (RS), Bucharest (RO), Moscow (RU), Stockholm (SE), Ljubljana (SI). Company registered in Estonia. No anonymous signup. No Tor or spam allowed. Payments via Payeer. KVM virtualization, Gigabit speeds for every VPS. They do NOT want anonymous signups or Tor traffic. User reports they ask for KYC (scan of government ID) after payment. Google Captchas
ForexVPS - Locations: New York (US), London (UK), Manchester (UK), Zurich (CH), Amsterdam (NL), Frankfurt (DE), Singapore (SG), Tokyo (JP). Company registered in Hong Kong. Lightning Network (LN) payment support
IndoVirtue - Locations: Singapore (SG), US. Company registered in Bali, Indonesia (?). No VPN/proxy during signup allowed
VPSBit - Locations: Hong Kong (HK), Lithuania (LT). Company registered in Hong Kong & Lithuania.
JPStream - Locations: Japan (JP). Company registered in Japan.
Server Field - Locations: Taiwan (TW). Company registered in Taiwan.
Hostkey - Locations: US, Netherlands (NL), Russia (RU). Company registered in Netherlands. User reports they do not allow registration from Protonmail email addresses
InternetBrothers - Locations: Korea (KR). Company registered in Korea. BTC accepted only on orders over $100, dedicated servers are not pre-configured. Non-HTTPS site
Kdatacenter - Locations: Korea (KR). Company registered in Korea.
VpsHosting - Locations: Hong Kong (HK). Company registered in Hong Kong (HK).
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
SuperBitHost - Locations: Bulgaria (BG), Germany (DE), Netherlands (NL), Luxembourg (LU), Malaysia (MY) Russia (RU), Singapore (SG), Switzerland (CH). Company registered in ???. uses Google captchas
Vultr - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Seattle (US), Silicon Valley (US), Toronto (CA), Amsterdam (NL), Frankfurt (DE), London (UK), Paris (FR), Tokyo (JP), Singapore (SG), Sydney (AU). Company registered in US. Reader reports strong anti-privacy policies: users must make credit card or PayPal payment before they are allowed to make Bitcoin deposits, and they use BitPay (which requires government ID/etc). Reader recommends using a Vultr reseller (e.g Bithost)
ClientVPS - Locations: Bahrain (BH), Ukraine (UA), Netherlands (NL), Panama (PA), Russia (RU), Singapore (SG), Hong Kong (HK), Iran (IR). Company registered in Russia or US, it’s unclear. “Bulletproof” hosting provider.
Privex - Locations: Sweden (SE), Netherlands (NL), Germany (DE), Finland (FI), United States (US), Japan (JP), Canada (CA). Company registered in Belize. Owns their own hardware and network at their SE / NL regions. Resells Hetzner in DE / FI. Resells Dacentec+Reliablesite in US. Resells Vultr in JP/CA. Privacy focused, anonymous/pseudonymous sign up encouraged. No captchas/cloudflare/analytics. Payments processed by their own in-house solution. Allows hosting Tor exit nodes / public VPNs in SE/NL locations and Tor/I2P relays in all locations except JP/CA. Runs their own Tor nodes to support the network. Ordering is possible with JavaScript disabled. Supports Bring-Your-Own-IP and colocation in SE/NL. Very flexible and willing to consider special requests. Onion service: http://privex3guvvasyer6pxz2fqcgy56auvw5egkir6ykwpptferdcb5toad.onion/ and I2P service: http://privex.i2p/
RatioServer - Locations: Amsterdam (NL), Budapest (HU), Copenhagen (DK), Dallas (US), Dublin (IE), Frankfurt (DE), London (UK), Los Angeles (US), Madrid (ES), Miami (US), Montreal (CA), New York (US), Paris (FR), Prague (CZ), Rome (IT), Singapore (SG), Sofia (BG), Sydney (AU), Tokyo (JP), Zurich (CH) and more. Company registered in ???. Most locations have unmetered dedicated servers and custom-built server options available. Tor- and anonymity-friendly. Does not verify email address validity, but encourages people to sign up with a working email address. Uses their own in-house BTC/ETH payment processor
Aaroli - Locations: Amsterdam (NL), Atlanta (US), Frankfurt (DE), London (UK), Paris (FR), Singapore (SG), Sydney (AU), Tokyo (JP), Toronto (CA). Company registered in an undisclosed location. Large Storage offered in 5 locations, may be suitable for full nodes. Payment via BTCPayServer or manual payment (accepts BTC, ETH). Willing to do custom configurations or payment via alternate methods. Anonymous/pseudonymous signup OK, provided you provide a working email address.
Casbay - Locations: Malaysia (MY), Singapore (SG). Company registered in Malaysia. Accepts Bitcoin (and many more cryptocurrencies) via Plisio. No restrictions on Tor traffic. They only verify email address on signup, but may require KYC if you trigger anti-abuse/anti-fraud monitoring systems. Uses Google Captchas. Offers Large Storage servers, may be suitable for full nodes. Even larger storage capacity available if you contact them directly.
TechRich - Locations: Japan (JP), Korea (KR), Malaysia (MY), China (CN), Hong Kong (HK), United States (US), Thailand (TH). Company registered in Hong Kong. They ask for user information but don’t verify/require KYC if you pay by cryptocurrency. Tor traffic OK as long as you don’t get abuse/complaints. They can arrange dedicated fiber lines for each client at the HK location. Uses Coinpayments, Bitpay, and Payeer for payments, can arrange other payment methods as long as you are not sending from an OFAC-listed address. They accept Lightning Network (LN) payments
Webconn Technology - Locations: Netherlands (NL), United States (US), Italy (IT), Japan (JP), France (FR). Company registered in Pakistan. Offers GPU servers. Unlimited traffic. They don’t care what information you provide at signup. Payments via Coinbase or direct transfer to wallet. Google captchas. Linked to Seimaxim
Domains4Bitcoins - Locations: United States (US), India (IN). Company registered in United States. Payments via BitPay – KYC and BitPay account required to purchase
GoSSDHosting - Locations: United States (US), India (IN). Company registered in India.
Melbicom - Locations: Riga (LV), Amsterdam (NL), Warsaw (PL), Moscow (RU), Palermo (IT), Vilnius (LT), Madrid (ES), Sofia (BG), Lagos (NG), Singapore (SG), Fujairah (AE), Atlanta (US), Los Angeles (US). Company registered in Lithuania. Windows and Linux VPS. Also offers CDN services. No Tor traffic allowed. They don’t ask for much personal information but don’t want anonymous signup, they may request ID verification. No illegal activities allowed. Bitcoin Lightning network (LN) payments supported. No Google Captchas. Large Storage servers are available. They support BGP sessions, colocations, and cloud services also.
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
RedSwitches - Locations: Singapore (SG), Miami (US), Germany (DE), Switzerland (CH), Australia (AU), Mumbai (IN), Tokyo (JP), Netherlands (NL), Hong Kong (HK), San Francisco (US), Canada (CA), London (UK), Washington DC (US). Company registered in Singapore.
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
HostZealot - Locations: Amsterdam (NL), London (UK), Stockholm (SE), Warsaw (PL), Limassol (CY), Tallinn (EE), Ashburn (US), Chicago (US), Dallas (US), Seattle (US), Toronto (CA), Brussels (BE), Tel Aviv (IL), Hong Kong (HK), Dusseldorf (DE), Tbilisi (GE). Company registered in Bulgaria. Provider states they are Tor and anonymity friendly as long as you do not violate their ToS. All their VPS instances use SSDs, their Poland and Netherlands locations offer NVMe also. User reports they do not allow registration from Protonmail email addresses.
BlueVPS - Locations: Amsterdam (NL), Limassol (CY), Gravelines (FR), Singapore (SG), Sofiya (BG), London (UK), Ashburn (US), Los Angeles (US), Atlanta (US), Frankfurt (DE), Palermo (IT), Tel Aviv (IL), Stockholm (SE), Toronto (CA), Tallinn (EE), Madrid (ES), Hong Kong (CN), Warsaw (PL), Sydney (AU), Fujairah (UAE). Company registered in Estonia. Payments via Coinpayments. Regarding anonymity they state “We require clients confirmation e-Mail or ID”. Provider has hardware in two different data centers at their Warsaw and London locations.
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
ServerMath - Locations: Amsterdam (NL), Hong Kong (HK), Madrid (ES), Seoul (KR), Dallas (TX), Istanbul (TR), Manila (PH), Singapore (SG), Dubai (AE), Lagos (NG), Miami (US), Tokyo (JP), Frankfurt (DE), London (UK), Moscow (RU), Warsaw (PL). Company registered in ???. Accepts Bitcoin via BTCPayServer. Willing to consider payment via other cryptocurrencies on request. Does not require KYC or check identity. Happy to arrange custom server configurations (e.g GPUs, high bandwidth servers). Affiliated with RatioServer. Website does not work when visited from some IP addresses
Ahost - Locations: Dubai (AE), Vienna (AT), Sydney (AU), Brussels (BE), Sofia (BG), Zurich (CH), Prague (CZ), Copenhagen (DK), Seville (ES), Thessaloniki (GR), Kwai Chung (HK), Zagreb (HR), Budapest (HU), Tel Aviv (IL), Hafnarfjordur (IS), Milan (IT), Tokyo (JP), Vilnius (LT), Riga (LV), Chisinau (MD), Skopje (MK), Oslo (NO), Warsaw (PL), Belgrade (RS), Bucharest (RO), Moscow (RU), Stockholm (SE), Ljubljana (SI). Company registered in Estonia. No anonymous signup. No Tor or spam allowed. Payments via Payeer. KVM virtualization, Gigabit speeds for every VPS. They do NOT want anonymous signups or Tor traffic. User reports they ask for KYC (scan of government ID) after payment. Google Captchas
IpTransit - Locations: Iran (IR). Company registered in Iran. Non-HTTPS site. Appears to be down, but you can try emailing them at the address given on their website
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
ClientVPS - Locations: Bahrain (BH), Ukraine (UA), Netherlands (NL), Panama (PA), Russia (RU), Singapore (SG), Hong Kong (HK), Iran (IR). Company registered in Russia or US, it’s unclear. “Bulletproof” hosting provider.
Melbicom - Locations: Riga (LV), Amsterdam (NL), Warsaw (PL), Moscow (RU), Palermo (IT), Vilnius (LT), Madrid (ES), Sofia (BG), Lagos (NG), Singapore (SG), Fujairah (AE), Atlanta (US), Los Angeles (US). Company registered in Lithuania. Windows and Linux VPS. Also offers CDN services. No Tor traffic allowed. They don’t ask for much personal information but don’t want anonymous signup, they may request ID verification. No illegal activities allowed. Bitcoin Lightning network (LN) payments supported. No Google Captchas. Large Storage servers are available. They support BGP sessions, colocations, and cloud services also.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
Shock Hosting - Locations: Piscataway/New Jersey (US), Los Angeles (US), Chicago (US), Dallas (US), Jacksonville (US), Denver (US), Seattle (US), Maidenhead (UK), Amsterdam (NL), Sydney (AU), Tokyo (JP), Singapore (SG). Company registered in United States.
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
Vultr - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Seattle (US), Silicon Valley (US), Toronto (CA), Amsterdam (NL), Frankfurt (DE), London (UK), Paris (FR), Tokyo (JP), Singapore (SG), Sydney (AU). Company registered in US. Reader reports strong anti-privacy policies: users must make credit card or PayPal payment before they are allowed to make Bitcoin deposits, and they use BitPay (which requires government ID/etc). Reader recommends using a Vultr reseller (e.g Bithost)
RatioServer - Locations: Amsterdam (NL), Budapest (HU), Copenhagen (DK), Dallas (US), Dublin (IE), Frankfurt (DE), London (UK), Los Angeles (US), Madrid (ES), Miami (US), Montreal (CA), New York (US), Paris (FR), Prague (CZ), Rome (IT), Singapore (SG), Sofia (BG), Sydney (AU), Tokyo (JP), Zurich (CH) and more. Company registered in ???. Most locations have unmetered dedicated servers and custom-built server options available. Tor- and anonymity-friendly. Does not verify email address validity, but encourages people to sign up with a working email address. Uses their own in-house BTC/ETH payment processor
Aaroli - Locations: Amsterdam (NL), Atlanta (US), Frankfurt (DE), London (UK), Paris (FR), Singapore (SG), Sydney (AU), Tokyo (JP), Toronto (CA). Company registered in an undisclosed location. Large Storage offered in 5 locations, may be suitable for full nodes. Payment via BTCPayServer or manual payment (accepts BTC, ETH). Willing to do custom configurations or payment via alternate methods. Anonymous/pseudonymous signup OK, provided you provide a working email address.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
RedSwitches - Locations: Singapore (SG), Miami (US), Germany (DE), Switzerland (CH), Australia (AU), Mumbai (IN), Tokyo (JP), Netherlands (NL), Hong Kong (HK), San Francisco (US), Canada (CA), London (UK), Washington DC (US). Company registered in Singapore.
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
ServerMath - Locations: Amsterdam (NL), Hong Kong (HK), Madrid (ES), Seoul (KR), Dallas (TX), Istanbul (TR), Manila (PH), Singapore (SG), Dubai (AE), Lagos (NG), Miami (US), Tokyo (JP), Frankfurt (DE), London (UK), Moscow (RU), Warsaw (PL). Company registered in ???. Accepts Bitcoin via BTCPayServer. Willing to consider payment via other cryptocurrencies on request. Does not require KYC or check identity. Happy to arrange custom server configurations (e.g GPUs, high bandwidth servers). Affiliated with RatioServer. Website does not work when visited from some IP addresses
GlobalDataServer - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), Montreal (CA), New York (US), Seattle (US), Vancouver (CA), Washington DC (US), Amsterdam (NL), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Frankfurt (DE), London (UK), Madrid (ES), Milan (IT), Moscow (RU), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Vienna (AT), Vilnius (LT), Warsaw (PL), Zurich (CH), Bursa (TR), Hong Kong (HK), Singapore (SG), Tokyo (JP), Sydney (AU), Johannesburg (ZA). Company registered in Las Vegas (US). Dedicated servers in 100+ locations. Has high bandwidth 20GBps dedicated servers and can do custom configuration. Tor friendly. Contact them directly to arrange BTC payment. User reports they are likely connected to AllServerHost. Use code BITCOINVPS for a 10% discount on first order
Web4Africa - Locations: Ghana, Kenya, Nigeria (NG), South Africa (ZA). Company registered in South Africa.
Melbicom - Locations: Riga (LV), Amsterdam (NL), Warsaw (PL), Moscow (RU), Palermo (IT), Vilnius (LT), Madrid (ES), Sofia (BG), Lagos (NG), Singapore (SG), Fujairah (AE), Atlanta (US), Los Angeles (US). Company registered in Lithuania. Windows and Linux VPS. Also offers CDN services. No Tor traffic allowed. They don’t ask for much personal information but don’t want anonymous signup, they may request ID verification. No illegal activities allowed. Bitcoin Lightning network (LN) payments supported. No Google Captchas. Large Storage servers are available. They support BGP sessions, colocations, and cloud services also.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
Ccihosting - Locations: Panama (PA). Company registered in Panama.
ClientVPS - Locations: Bahrain (BH), Ukraine (UA), Netherlands (NL), Panama (PA), Russia (RU), Singapore (SG), Hong Kong (HK), Iran (IR). Company registered in Russia or US, it’s unclear. “Bulletproof” hosting provider.
Dedimax - Locations: 120+ worldwide: France (FR), Netherlands (NL), United States (US), Canada (CA), Portugal (PT), Lithuania (LT), Moldova (MD), Spain (ES), Bulgaria (BG), Germany (DE), Austria (AT), and many many more…. Company registered in Belgium. User reports Tor signup doesn’t work
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
Vultr - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Seattle (US), Silicon Valley (US), Toronto (CA), Amsterdam (NL), Frankfurt (DE), London (UK), Paris (FR), Tokyo (JP), Singapore (SG), Sydney (AU). Company registered in US. Reader reports strong anti-privacy policies: users must make credit card or PayPal payment before they are allowed to make Bitcoin deposits, and they use BitPay (which requires government ID/etc). Reader recommends using a Vultr reseller (e.g Bithost)
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
Virtual Private Network providers allow you to tunnel your Internet traffic to their servers using an encrypted link.
Initech - Locations: Melbourne (AU), Sydney (AU), Belgium (BE), Sao Paulo (BR), Montreal (CA), Toronto (CA), Santiago (CL), Hong Kong (CN), Helsinki (FI), Finland (FI), Paris (FR), Berlin (DE), Falkenstein (DE), Frankfurt (DE), Nuremberg (DE), Bangalore (IN), Delhi (IN), Mumbai (IN), Jakarta (ID), Ireland (IE), Tel Aviv (IL), Milan (IT), Turnin (IT), Osaka (JP), Tokyo (JP), Kuala Lumpur (MY), Mexico City (MX), Amsterdam (NL), Holland (NL), Manila (PH), Warsaw (PL), Doha (QA), Singapore (SG), Johannesburg (ZA), Seoul (KR), Madrid (ES), Stockholm (SE), Dubai (AE), London (UK), Manchester (UK), Atlanta (US), Chicago (US), Columbus (US), Dallas (US), Honolulu (US), Iowa (US), Las Vegas (US), Los Angeles (US), Miami (US), New York (US), Ohio (US), Oregon (US), Salt Lake City (US), San Francisco (US), Seattle (US), Silicon Valley (US), South Carolina (US), Virginia (US), Zurich (CH), Taiwan (TW). Company registered in United States. Also offers a residential proxy (VPN) service with endpoints available in almost every country worldwide (the residential proxy service blocks websites that are common abuse targets, like banking or Netflix. Their VPS service does not block). Resells VPS services from many cloud providers (Vultr, Alibaba Cloud, Amazon Lightsail/AWS, DigitalOcean, Google Cloud/GCP, Hetzner Cloud). No email verification required to order. Accept all major cryptocurrencies. Tor traffic is OK, their website is built to be easy to use over Tor. Accepts crypto payments via Plisio and BTCPayServer, including Bitcoin Lightning Network (LN) payments via BTCPayServer. Large Storage / Block storage 40GB up to 40TB now available via normal ordering flow. Use promo code BITCOINVPS for 10% discount on all orders for new customers.
Njalla - Locations: Sweden (SE). Company registered in Nevis. Runs their own datacenter. Tor- and anonymity-friendly. Privacy-focused domain registration service that also offers VPS, VPN. Accepts BTC, XMR, ZEC among other options. Onion URL: http://njallalafimoej5i4eg7vlnqjvmb6zhdh27qxcatdn647jtwwwui3nad.onion
Private WebHost - Locations: Vienna (AT), Helsinki (FI), Frankfurt (DE), Netherlands (NL), Moscow (RU), Stockholm (SE), Zurich (CH), Paris (FR), Los Angeles (US). Company registered in Switzerland. Privacy/anonymity-focused hoster. Only an email required at signup, Signup via VPNs, proxies, and Tor allowed, payments via NOWPayments, CoinPayments.net. Lightning Network (LN) payments via CoinPayments. Working on self/hosted payments. The Swiss dedicated servers are Large Storage and suitable for Bitcoin full nodes. All servers can be used for Tor nodes (exit nodes allowed if you block port 25). Netherlands VPS servers are Large Storage. No Google Captcha. Support via tickets or encrypted email. Dedicated servers in Switzerland, working on more locations. Use promo code BITCOINVPS for 10% off. Very responsive support.
VPS2day - Locations: Frankfurt a.M (DE), Zug/Switzerland (CH), Tallin (EE), Bucharest (RO), The Hague (NL), Stockholm (SE), Manchester (UK), Dallas (US). Company registered in Frankfurt, Germany. Website blocks Tor traffic outright. Does not allow anonymous signup. Payment via Coingate.
NiceVPS - Locations: Netherlands (NL). Company registered in Dominica. Minimal registration data and Tor friendly. Bulletproof DDoS-protected hosting available. Also provides confidential domains. Will offer hosting in Switzerland (CH) soon.
AlexHost - Locations: Tallbert (SE), Moldova (MD), Sofia (BG), Netherlands (NL). Company registered in Moldova. Email hosting included with shared web hosting service. Operates through AS200019, with own datacenter, network and hardware in the Republic of Moldova. Domain registration via OpenSRS/Tucows. They welcome people using their VPS for VPN endpoints. No KYC unless the payment gateway (e.g Paypal) asks for it (so pay with crypto). Doesn’t verify the personal data you give them otherwise. Tor bridges and relays are fine, Tor exit nodes are not allowed. Bitcoin payments accepted via BTCPayServer. Monero and other cryptocurrencies also accepted. May use Google Captchas (via Hostbill). Dedicated servers can be customized so they have Large Storage for running full nodes. Provider states they support freedom of speech and privacy.
LNVPN - Locations: Canada (CA), United States (US), Finland (FI), United Kingdom (UK), Singapore (SG), India (IN), Netherlands (NL), Russia (RU), Ukraine (UA), Switzerland (CH), Israel (IL), Kazakhstan (KZ), Brazil (BR), Romania (RO), Kenya (KE), Iceland (IS). Company registered in Germany. Accountless VPN provider that supports Lightning Network (LN) payment. Stores no private information about you whatsoever. Only supports Wireguard. Aimed at people who know how to configure Wireguard themselves. Soon offering login using LNAUTH
Noez - Locations: Frankfurt (DE). Company registered in Germany. Large Storage, may be suitable for running Bitcoin full nodes
Airvpn - Locations: 19 Countries. Company registered in ???.
OVPN - Locations: US, Finland (FI), Sweden (SE), Norway (NO), UK, France (FR), Spain (ES), Germany (DE), Switzerland (CH), Netherlands (NL). Company registered in Sweden.
xitheon - Locations: Quebec (CA), Frankfurt (DE), Sydney (AU), Warsaw (PL), France (FR), Singapore (SG), UK. Company registered in ???.
Hostens - Locations: London (UK), Frankfurt (DE), Lithuania (LT), Amsterdam (NL), Washington (US), San Fransisco (US), Singapore (SG). Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Requires full KYC (govt ID/etc) on signup, may use BitPay
Time4VPS - Locations: Lithuania (LT), Singapore (SG), US. Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Now requiring KYC (ID scans)
Zergrush Hosting - Locations: Bucharest (RO). Company registered in Romania. Payments via uTrust, which supports Lightning Network (LN) payments. No Tor exits allowed. Do ask for personal information at signup.
iVPN - Locations: United States (US), United Kingdom (UK), Ukraine (UA), Taiwan (TW), Switzerland (CH), Sweden (SE), Spain (ES), South Africa (ZA), Singapore (SG), Serbia (RS), Romania (RO), Portugal (PT), Poland (PL), Netherlands (NL), Mexico (MX), Malaysia (MY), Luxembourg (LU), Japan (JP), Italy (IT), Israel (IL), Iceland (IS), Hong Kong (HK), Greece (GR), Germany (DE), France (FR), Finland (FI), Denmark (DK), Czech Republic (CZ), Canada (CA), Bulgaria (BG), Brazil (BR), Belgium (BE), Austria (AT), Australia (AU). Company registered in Gibraltar. Supports Lightning Network (LN) payments, automatic Wireguard key rotation
Initech - Locations: Melbourne (AU), Sydney (AU), Belgium (BE), Sao Paulo (BR), Montreal (CA), Toronto (CA), Santiago (CL), Hong Kong (CN), Helsinki (FI), Finland (FI), Paris (FR), Berlin (DE), Falkenstein (DE), Frankfurt (DE), Nuremberg (DE), Bangalore (IN), Delhi (IN), Mumbai (IN), Jakarta (ID), Ireland (IE), Tel Aviv (IL), Milan (IT), Turnin (IT), Osaka (JP), Tokyo (JP), Kuala Lumpur (MY), Mexico City (MX), Amsterdam (NL), Holland (NL), Manila (PH), Warsaw (PL), Doha (QA), Singapore (SG), Johannesburg (ZA), Seoul (KR), Madrid (ES), Stockholm (SE), Dubai (AE), London (UK), Manchester (UK), Atlanta (US), Chicago (US), Columbus (US), Dallas (US), Honolulu (US), Iowa (US), Las Vegas (US), Los Angeles (US), Miami (US), New York (US), Ohio (US), Oregon (US), Salt Lake City (US), San Francisco (US), Seattle (US), Silicon Valley (US), South Carolina (US), Virginia (US), Zurich (CH), Taiwan (TW). Company registered in United States. Also offers a residential proxy (VPN) service with endpoints available in almost every country worldwide (the residential proxy service blocks websites that are common abuse targets, like banking or Netflix. Their VPS service does not block). Resells VPS services from many cloud providers (Vultr, Alibaba Cloud, Amazon Lightsail/AWS, DigitalOcean, Google Cloud/GCP, Hetzner Cloud). No email verification required to order. Accept all major cryptocurrencies. Tor traffic is OK, their website is built to be easy to use over Tor. Accepts crypto payments via Plisio and BTCPayServer, including Bitcoin Lightning Network (LN) payments via BTCPayServer. Large Storage / Block storage 40GB up to 40TB now available via normal ordering flow. Use promo code BITCOINVPS for 10% discount on all orders for new customers.
Private WebHost - Locations: Vienna (AT), Helsinki (FI), Frankfurt (DE), Netherlands (NL), Moscow (RU), Stockholm (SE), Zurich (CH), Paris (FR), Los Angeles (US). Company registered in Switzerland. Privacy/anonymity-focused hoster. Only an email required at signup, Signup via VPNs, proxies, and Tor allowed, payments via NOWPayments, CoinPayments.net. Lightning Network (LN) payments via CoinPayments. Working on self/hosted payments. The Swiss dedicated servers are Large Storage and suitable for Bitcoin full nodes. All servers can be used for Tor nodes (exit nodes allowed if you block port 25). Netherlands VPS servers are Large Storage. No Google Captcha. Support via tickets or encrypted email. Dedicated servers in Switzerland, working on more locations. Use promo code BITCOINVPS for 10% off. Very responsive support.
VPS2day - Locations: Frankfurt a.M (DE), Zug/Switzerland (CH), Tallin (EE), Bucharest (RO), The Hague (NL), Stockholm (SE), Manchester (UK), Dallas (US). Company registered in Frankfurt, Germany. Website blocks Tor traffic outright. Does not allow anonymous signup. Payment via Coingate.
LNVPN - Locations: Canada (CA), United States (US), Finland (FI), United Kingdom (UK), Singapore (SG), India (IN), Netherlands (NL), Russia (RU), Ukraine (UA), Switzerland (CH), Israel (IL), Kazakhstan (KZ), Brazil (BR), Romania (RO), Kenya (KE), Iceland (IS). Company registered in Germany. Accountless VPN provider that supports Lightning Network (LN) payment. Stores no private information about you whatsoever. Only supports Wireguard. Aimed at people who know how to configure Wireguard themselves. Soon offering login using LNAUTH
Airvpn - Locations: 19 Countries. Company registered in ???.
OVPN - Locations: US, Finland (FI), Sweden (SE), Norway (NO), UK, France (FR), Spain (ES), Germany (DE), Switzerland (CH), Netherlands (NL). Company registered in Sweden.
xitheon - Locations: Quebec (CA), Frankfurt (DE), Sydney (AU), Warsaw (PL), France (FR), Singapore (SG), UK. Company registered in ???.
Hostens - Locations: London (UK), Frankfurt (DE), Lithuania (LT), Amsterdam (NL), Washington (US), San Fransisco (US), Singapore (SG). Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Requires full KYC (govt ID/etc) on signup, may use BitPay
Time4VPS - Locations: Lithuania (LT), Singapore (SG), US. Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Now requiring KYC (ID scans)
iVPN - Locations: United States (US), United Kingdom (UK), Ukraine (UA), Taiwan (TW), Switzerland (CH), Sweden (SE), Spain (ES), South Africa (ZA), Singapore (SG), Serbia (RS), Romania (RO), Portugal (PT), Poland (PL), Netherlands (NL), Mexico (MX), Malaysia (MY), Luxembourg (LU), Japan (JP), Italy (IT), Israel (IL), Iceland (IS), Hong Kong (HK), Greece (GR), Germany (DE), France (FR), Finland (FI), Denmark (DK), Czech Republic (CZ), Canada (CA), Bulgaria (BG), Brazil (BR), Belgium (BE), Austria (AT), Australia (AU). Company registered in Gibraltar. Supports Lightning Network (LN) payments, automatic Wireguard key rotation
Initech - Locations: Melbourne (AU), Sydney (AU), Belgium (BE), Sao Paulo (BR), Montreal (CA), Toronto (CA), Santiago (CL), Hong Kong (CN), Helsinki (FI), Finland (FI), Paris (FR), Berlin (DE), Falkenstein (DE), Frankfurt (DE), Nuremberg (DE), Bangalore (IN), Delhi (IN), Mumbai (IN), Jakarta (ID), Ireland (IE), Tel Aviv (IL), Milan (IT), Turnin (IT), Osaka (JP), Tokyo (JP), Kuala Lumpur (MY), Mexico City (MX), Amsterdam (NL), Holland (NL), Manila (PH), Warsaw (PL), Doha (QA), Singapore (SG), Johannesburg (ZA), Seoul (KR), Madrid (ES), Stockholm (SE), Dubai (AE), London (UK), Manchester (UK), Atlanta (US), Chicago (US), Columbus (US), Dallas (US), Honolulu (US), Iowa (US), Las Vegas (US), Los Angeles (US), Miami (US), New York (US), Ohio (US), Oregon (US), Salt Lake City (US), San Francisco (US), Seattle (US), Silicon Valley (US), South Carolina (US), Virginia (US), Zurich (CH), Taiwan (TW). Company registered in United States. Also offers a residential proxy (VPN) service with endpoints available in almost every country worldwide (the residential proxy service blocks websites that are common abuse targets, like banking or Netflix. Their VPS service does not block). Resells VPS services from many cloud providers (Vultr, Alibaba Cloud, Amazon Lightsail/AWS, DigitalOcean, Google Cloud/GCP, Hetzner Cloud). No email verification required to order. Accept all major cryptocurrencies. Tor traffic is OK, their website is built to be easy to use over Tor. Accepts crypto payments via Plisio and BTCPayServer, including Bitcoin Lightning Network (LN) payments via BTCPayServer. Large Storage / Block storage 40GB up to 40TB now available via normal ordering flow. Use promo code BITCOINVPS for 10% discount on all orders for new customers.
LNVPN - Locations: Canada (CA), United States (US), Finland (FI), United Kingdom (UK), Singapore (SG), India (IN), Netherlands (NL), Russia (RU), Ukraine (UA), Switzerland (CH), Israel (IL), Kazakhstan (KZ), Brazil (BR), Romania (RO), Kenya (KE), Iceland (IS). Company registered in Germany. Accountless VPN provider that supports Lightning Network (LN) payment. Stores no private information about you whatsoever. Only supports Wireguard. Aimed at people who know how to configure Wireguard themselves. Soon offering login using LNAUTH
Airvpn - Locations: 19 Countries. Company registered in ???.
xitheon - Locations: Quebec (CA), Frankfurt (DE), Sydney (AU), Warsaw (PL), France (FR), Singapore (SG), UK. Company registered in ???.
Hostens - Locations: London (UK), Frankfurt (DE), Lithuania (LT), Amsterdam (NL), Washington (US), San Fransisco (US), Singapore (SG). Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Requires full KYC (govt ID/etc) on signup, may use BitPay
Time4VPS - Locations: Lithuania (LT), Singapore (SG), US. Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Now requiring KYC (ID scans)
iVPN - Locations: United States (US), United Kingdom (UK), Ukraine (UA), Taiwan (TW), Switzerland (CH), Sweden (SE), Spain (ES), South Africa (ZA), Singapore (SG), Serbia (RS), Romania (RO), Portugal (PT), Poland (PL), Netherlands (NL), Mexico (MX), Malaysia (MY), Luxembourg (LU), Japan (JP), Italy (IT), Israel (IL), Iceland (IS), Hong Kong (HK), Greece (GR), Germany (DE), France (FR), Finland (FI), Denmark (DK), Czech Republic (CZ), Canada (CA), Bulgaria (BG), Brazil (BR), Belgium (BE), Austria (AT), Australia (AU). Company registered in Gibraltar. Supports Lightning Network (LN) payments, automatic Wireguard key rotation
Initech - Locations: Melbourne (AU), Sydney (AU), Belgium (BE), Sao Paulo (BR), Montreal (CA), Toronto (CA), Santiago (CL), Hong Kong (CN), Helsinki (FI), Finland (FI), Paris (FR), Berlin (DE), Falkenstein (DE), Frankfurt (DE), Nuremberg (DE), Bangalore (IN), Delhi (IN), Mumbai (IN), Jakarta (ID), Ireland (IE), Tel Aviv (IL), Milan (IT), Turnin (IT), Osaka (JP), Tokyo (JP), Kuala Lumpur (MY), Mexico City (MX), Amsterdam (NL), Holland (NL), Manila (PH), Warsaw (PL), Doha (QA), Singapore (SG), Johannesburg (ZA), Seoul (KR), Madrid (ES), Stockholm (SE), Dubai (AE), London (UK), Manchester (UK), Atlanta (US), Chicago (US), Columbus (US), Dallas (US), Honolulu (US), Iowa (US), Las Vegas (US), Los Angeles (US), Miami (US), New York (US), Ohio (US), Oregon (US), Salt Lake City (US), San Francisco (US), Seattle (US), Silicon Valley (US), South Carolina (US), Virginia (US), Zurich (CH), Taiwan (TW). Company registered in United States. Also offers a residential proxy (VPN) service with endpoints available in almost every country worldwide (the residential proxy service blocks websites that are common abuse targets, like banking or Netflix. Their VPS service does not block). Resells VPS services from many cloud providers (Vultr, Alibaba Cloud, Amazon Lightsail/AWS, DigitalOcean, Google Cloud/GCP, Hetzner Cloud). No email verification required to order. Accept all major cryptocurrencies. Tor traffic is OK, their website is built to be easy to use over Tor. Accepts crypto payments via Plisio and BTCPayServer, including Bitcoin Lightning Network (LN) payments via BTCPayServer. Large Storage / Block storage 40GB up to 40TB now available via normal ordering flow. Use promo code BITCOINVPS for 10% discount on all orders for new customers.
ExpressVPN - Locations: 94+ worldwide. Company registered in British Virgin Islands.
NordVPN - Locations: Worldwide. Company registered in Panama. Uses BitPay
PrivateVPN - Locations: 60+ worldwide. Company registered in Sweden.
Mullvad - Locations: 420+ worldwide. Company registered in Sweden. Accepting Bitcoin since July 2010, supports WireGuard. Has a good reputation, recommended
CyberGhost - Locations: 61 Countries, Worldwide. Company registered in Czech Republic. uses Bitpay. Privacy controversy: https://bitcointalk.org/index.php?topic=5203656.msg53196238#msg53196238
Surfshark - Locations: 50+ Worldwide. Company registered in British Virgin Islands. uses Coingate, Lightning Network (LN) support
privateinternetaccess - Locations: 32 Countries, Worldwide. Company registered in US. privacy controversy: https://bitcointalk.org/index.php?topic=5203656.msg53196238#msg53196238
IVACY - Locations: US, United Kingdom (UK), Ukraine (UA), Turkey (TR), Switzerland (CH), Taiwan (TW), Sweden (SE), Spain (ES), South Korea (KR), Singapore (SG), Saudi Arabia (SA), South Africa (ZA), Russia (RU), Seychelles, Romania (RO), Poland (PL), Philippines (PH), Panama (PA), Peru (PE), Norway (NO), Pakistan (PK), Nigeria (NG), New Zealand (NZ), Netherlands (NL), Mexico (MX), Malaysia (MY) Latvia (LV), Luxembourg (LU) Japan (JP), Kuwait, Kenya,Italy (IT), India (IN), Hong Kong (HK), Indonesia (IN), Ghana, France (FR), Finland (FI),Germany (DE), Egypt, Denmark (DK), Czech Republic (CZ), Colombia (CO), China (CN), Chile (CL), Costa Rica, Bulgaria (BG), Brunei, Brazil (BR), Canada (CA), Austria (AT), Australia (AU), Belgium (BE),. Company registered in Singapore. Uses BitPay and Coingate
Le Vpn - Locations: 120+ Countries. Company registered in Hong Kong.
HIDEme - Locations: 57 Countries. Company registered in Malaysia.
IronSocket - Locations: 70+ Countries. Company registered in Hong Kong.
Protonvpn - Locations: 89+ Countries. Company registered in Switzerland.
TorGuard - Locations: 50+ Worldwide. Company registered in US.
VPN.AC - Locations: 21 Countries. Company registered in Romania.
VPNme - Locations: US. Company registered in US.
VPN Secure - Locations: 48 Countries. Company registered in Australia .
xitheon - Locations: Quebec (CA), Frankfurt (DE), Sydney (AU), Warsaw (PL), France (FR), Singapore (SG), UK. Company registered in ???.
Windscribe VPN - Locations: Albania (AL), Argentina (AR), Australia (AU), Austria (AT), Azerbaijan (AZ), Belgium (BE), Bosnia, Brazil (BR), Bulgaria (BG), Colombia (CO), Croatia (HR), Cyprus (CY), Czech Republic (CZ), Denmark (DK), Estonia (EE), Fake Antarctica, Finland (FI), France (FR), Germany (DE), Greece (GR), Hong Kong (HK), Hungary (HU), Iceland (IS), India (IN), Indonesia (IN), Ireland (IE), Israel (IL), Italy (IT), Japan (JP), Latvia (LV), Lithuania (LT), Macedonia, Malaysia (MY) Mexico (MX), Moldova (MD), Netherlands (NL), New Zealand (NZ), Norway (NO), Philippines (PH), Poland (PL), Portugal (PT), Romania (RO), Russia (RU), Serbia (RS), Singapore (SG), Slovakia (SK), Slovenia, South Africa (ZA), South Korea (KR), Spain (ES), Sweden (SE), Switzerland (CH), Taiwan (TW), Thailand (TH), Tunisia (TN), Turkey (TR), Ukraine (UA), United Arab Emirates (AE), United Kingdom (UK), Vietnam (VN), Canada (CA), Japan (JP),. Company registered in Canada. Offers residential IP addresses to bypass VPN blocking
AzireVPN - Locations: Toronto (CA), Paris (FR), Frankfurt (DE), Amsterdam (NL), Bucharest (RO), Malaga (ES), Gothemburg (SE), Phuket (TH), Chicago (US), New York (US), Copenhagen (DK), Berlin (DE), Milan (IT), Oslo (NO), Madrid (ES), Stockholm (SE), Zurich (CH), London (UK), Miami (US). Company registered in Sweden. IPv6 support, Wireguard support, P2P traffic allowed, they own their own servers, servers run without physical storage media to ensure no logging, unblocks Netflix
iVPN - Locations: United States (US), United Kingdom (UK), Ukraine (UA), Taiwan (TW), Switzerland (CH), Sweden (SE), Spain (ES), South Africa (ZA), Singapore (SG), Serbia (RS), Romania (RO), Portugal (PT), Poland (PL), Netherlands (NL), Mexico (MX), Malaysia (MY), Luxembourg (LU), Japan (JP), Italy (IT), Israel (IL), Iceland (IS), Hong Kong (HK), Greece (GR), Germany (DE), France (FR), Finland (FI), Denmark (DK), Czech Republic (CZ), Canada (CA), Bulgaria (BG), Brazil (BR), Belgium (BE), Austria (AT), Australia (AU). Company registered in Gibraltar. Supports Lightning Network (LN) payments, automatic Wireguard key rotation
Virtual Dedicated Server providers, which are very similar to VPS providers but sometimes offer greater isolation (e.g using KVM or Xen instead of OpenVZ – note many VPS providers also offer KVM or Xen). In some cases VDS may mean a VPS with a dedicated CPU core, so it is not sharing CPU capacity with other clients from that provider.
Private WebHost - Locations: Vienna (AT), Helsinki (FI), Frankfurt (DE), Netherlands (NL), Moscow (RU), Stockholm (SE), Zurich (CH), Paris (FR), Los Angeles (US). Company registered in Switzerland. Privacy/anonymity-focused hoster. Only an email required at signup, Signup via VPNs, proxies, and Tor allowed, payments via NOWPayments, CoinPayments.net. Lightning Network (LN) payments via CoinPayments. Working on self/hosted payments. The Swiss dedicated servers are Large Storage and suitable for Bitcoin full nodes. All servers can be used for Tor nodes (exit nodes allowed if you block port 25). Netherlands VPS servers are Large Storage. No Google Captcha. Support via tickets or encrypted email. Dedicated servers in Switzerland, working on more locations. Use promo code BITCOINVPS for 10% off. Very responsive support.
Profvds - Locations: Bratislava (SK). Company registered in Slovakia. Accepts Bitcoin via BTCPayServer, NOWPayments, Plisio, and Payeer. Only Email required to register. Provider notes they support running Bitcoin full nodes
VPSBG - Locations: Sofia (BG). Company registered in Bulgaria. Locations: Sofia (BG). Company registered in Bulgaria. Anonymous signup OK, Tor allowed. No 3rd party payment processor, has own implementation to take payments via Bitcoin, Litecoin and Lightning Network (LN). Advertises high performance servers. Provider notes: “VPN servers are installed on a private VPS. They have a dedicated static IP, full SSH root access to the VPS, allowing for full control over the VPN. Verifiable no-logs and privacy policies. Unlimited device connections. VPN uses open-source protocols and custom scripts that are used are publicly available.”
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
Justhost - Locations: Russia (RU). Company registered in Russia. Selling VDS
IP-Connect - Locations: Ukraine (UA). Company registered in Ukraine. Runs their own datacenter. Tor-friendly. Minimal registration. Crypto payments accepted via payment gateway. Doesn’t require KYC, allows TOR/proxy. Criminal activity prohibited. All VPS are KVM-based, 100% SSD, recent Intel processors, redundant high quality uplinks, lowest latency possible, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random generators for fast entropy, noVNC, images of common Linux distributions for fully automated installation, bring your own .iso (also Windows etc. allowed). Now additionally accepts payments via Nowpayments.io, which supports hundreds of different cryptocurrencies. Use promocode “bitcoin-vps2022” for -10% discount
Hostkey - Locations: US, Netherlands (NL), Russia (RU). Company registered in Netherlands. User reports they do not allow registration from Protonmail email addresses
Servers.Guru - Locations: Helsinki (FI), Nuremberg (DE), Falkenstein (DE), Ashburn (US). Company registered in United States. Anonymous signup allowed (only a valid email address is required). Tor traffic OK. Accepts Lightning Network (LN) payments. Uses self-hosted BitCartCC for Bitcoin payments (as well as others), takes DOGE, DASH, and Zcash/ZEC via Plisio.
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
VDS: North America
Private WebHost - Locations: Vienna (AT), Helsinki (FI), Frankfurt (DE), Netherlands (NL), Moscow (RU), Stockholm (SE), Zurich (CH), Paris (FR), Los Angeles (US). Company registered in Switzerland. Privacy/anonymity-focused hoster. Only an email required at signup, Signup via VPNs, proxies, and Tor allowed, payments via NOWPayments, CoinPayments.net. Lightning Network (LN) payments via CoinPayments. Working on self/hosted payments. The Swiss dedicated servers are Large Storage and suitable for Bitcoin full nodes. All servers can be used for Tor nodes (exit nodes allowed if you block port 25). Netherlands VPS servers are Large Storage. No Google Captcha. Support via tickets or encrypted email. Dedicated servers in Switzerland, working on more locations. Use promo code BITCOINVPS for 10% off. Very responsive support.
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
Hostkey - Locations: US, Netherlands (NL), Russia (RU). Company registered in Netherlands. User reports they do not allow registration from Protonmail email addresses
Servers.Guru - Locations: Helsinki (FI), Nuremberg (DE), Falkenstein (DE), Ashburn (US). Company registered in United States. Anonymous signup allowed (only a valid email address is required). Tor traffic OK. Accepts Lightning Network (LN) payments. Uses self-hosted BitCartCC for Bitcoin payments (as well as others), takes DOGE, DASH, and Zcash/ZEC via Plisio.
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
Hostkey - Locations: US, Netherlands (NL), Russia (RU). Company registered in Netherlands. User reports they do not allow registration from Protonmail email addresses
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
Signing up for a VPS generally requires an email address, but there are major privacy downsides to using most free services. Therefore we also list paid, privacy-friendly email providers who accept Bitcoin. For a non-Bitcoin-specific list of email providers ranked by observable technical security competence, see the Dismail list: https://dismail.de/serverlist.html
Mondoze - Locations: Cyberjaya Malaysia (MY). Company registered in Malaysia. Payments via Plisio. Dedicated server available if you contact them directly. Tor traffic OK as long as you conform to their TOS. Anonymous sign up OK. Large storage maybe available if you contact support.
Casbay - Locations: Malaysia (MY), Singapore (SG). Company registered in Malaysia. Accepts Bitcoin (and many more cryptocurrencies) via Plisio. No restrictions on Tor traffic. They only verify email address on signup, but may require KYC if you trigger anti-abuse/anti-fraud monitoring systems. Uses Google Captchas. Offers Large Storage servers, may be suitable for full nodes. Even larger storage capacity available if you contact them directly.
Domains4Bitcoins - Locations: United States (US), India (IN). Company registered in United States. Payments via BitPay – KYC and BitPay account required to purchase
Migadu - Locations: France (FR). Company registered in Switzerland. Widely respected. Very strict about TOS enforcement, black-hat users are not welcome here! Unlimited aliases/accounts/domains. Bitcoin payment for annual plans on request (email them or open a ticket)… but… only for existing accounts in good standing unless you can demonstrate you are not planning to use the service for spam/scam/fraud/etc. We currently host our email on Migadu and have found them to be very competent.
Neomailbox - Locations: Switzerland (CH). Company registered in Switzerland or Seychelles, it’s unclear. Paid-only. User reports they block Tor users from sending via SMTP
Protonmail - Locations: Switzerland (CH). Company registered in Switzerland. Very well known. Free service with paid options. IMAP/POP3 requires paid account. Paying with Bitcoin is somewhat complex: https://proton.me/support/pay-with-bitcoin Please tell Protonmail to simplify this and have their website accept Bitcoin under all circumstances.
Tutanota - Locations: Germany (DE). Company registered in Germany. Free service with paid options. No IMAP/POP3.
CounterMail - Locations: Sweden (SE). Company registered in Sweden. In business since 2010. Paid-only, requires invite code from another user to register
Runbox - Locations: Norway (NO). Company registered in Norway. Uses BitPay
AnonymousEmail.me - Locations: Moldova (MD). Company registered in ???. Send-only (no receive!) anonymous email. Accepts Bitcoin and Monero. Lets you anonymously send email to any address for a fee. Offers an optional semi-secure reply forwarding service, to forward replies to your real email. Tor OK, onion service is being developed.
SnowCore - Locations: Amsterdam (NL), Salt Lake City (US). Company registered in ???. Uses a Mullvad-style token login system so they don’t collect any personal information at all. Payments via NOWpayments. Cloudflare captchas. Dedicated servers available with 1TB SSDs for 30 EUR one time payment in some locations, might be useful as Large Storage servers for full nodes. Tor is allowed and fully supported.
Domains4Bitcoins - Locations: United States (US), India (IN). Company registered in United States. Payments via BitPay – KYC and BitPay account required to purchase
SnowCore - Locations: Amsterdam (NL), Salt Lake City (US). Company registered in ???. Uses a Mullvad-style token login system so they don’t collect any personal information at all. Payments via NOWpayments. Cloudflare captchas. Dedicated servers available with 1TB SSDs for 30 EUR one time payment in some locations, might be useful as Large Storage servers for full nodes. Tor is allowed and fully supported.
Domain name providers that take Bitcoin.
Njalla - Locations: Sweden (SE). Company registered in Nevis. Runs their own datacenter. Tor- and anonymity-friendly. Privacy-focused domain registration service that also offers VPS, VPN. Accepts BTC, XMR, ZEC among other options. Onion URL: http://njallalafimoej5i4eg7vlnqjvmb6zhdh27qxcatdn647jtwwwui3nad.onion
Private WebHost - Locations: Vienna (AT), Helsinki (FI), Frankfurt (DE), Netherlands (NL), Moscow (RU), Stockholm (SE), Zurich (CH), Paris (FR), Los Angeles (US). Company registered in Switzerland. Privacy/anonymity-focused hoster. Only an email required at signup, Signup via VPNs, proxies, and Tor allowed, payments via NOWPayments, CoinPayments.net. Lightning Network (LN) payments via CoinPayments. Working on self/hosted payments. The Swiss dedicated servers are Large Storage and suitable for Bitcoin full nodes. All servers can be used for Tor nodes (exit nodes allowed if you block port 25). Netherlands VPS servers are Large Storage. No Google Captcha. Support via tickets or encrypted email. Dedicated servers in Switzerland, working on more locations. Use promo code BITCOINVPS for 10% off. Very responsive support.
ThunderVM - Locations: Germany (DE), United States (US), Iceland (IS), Switzerland (CH), Netherlands (NL), France (FR), Italy (IT), United Kingdom (UK), Lithuania (LT), Poland (PL). Company registered in italy. Ok with hosting full nodes and Tor relays, but not Tor exit nodes, or (on VPS) mining cryptocurrency. Uses hCaptcha. Provider states that all their servers/hypervisors are installed and encrypted by them for user security. Uses BTCPayServer and self-hosted Monero (XMR) payments. Accepts Lightning Network (LN) payments via NowPayments
AlexHost - Locations: Tallbert (SE), Moldova (MD), Sofia (BG), Netherlands (NL). Company registered in Moldova. Email hosting included with shared web hosting service. Operates through AS200019, with own datacenter, network and hardware in the Republic of Moldova. Domain registration via OpenSRS/Tucows. They welcome people using their VPS for VPN endpoints. No KYC unless the payment gateway (e.g Paypal) asks for it (so pay with crypto). Doesn’t verify the personal data you give them otherwise. Tor bridges and relays are fine, Tor exit nodes are not allowed. Bitcoin payments accepted via BTCPayServer. Monero and other cryptocurrencies also accepted. May use Google Captchas (via Hostbill). Dedicated servers can be customized so they have Large Storage for running full nodes. Provider states they support freedom of speech and privacy.
AnonRDP - Locations: Poland (PL), France (FR). Company registered in Unknown. Anonymous signup allowed, only email address is required. Tor traffic is OK, but requires javascipt due to DdoS protection. Payments via Cryptomus. Accepts XMR, BTC, ETH, TRX, USDT, LTC, and more. Uses Google Captcha now, will soon have a self-hosted non-Javascript solution.
KernelHost - Locations: Frankfurt (DE). Company registered in Austria. Bitcoin payments via BTCPayServer. KVM based servers. Servers at Maincubes datacenter
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
Private WebHost - Locations: Vienna (AT), Helsinki (FI), Frankfurt (DE), Netherlands (NL), Moscow (RU), Stockholm (SE), Zurich (CH), Paris (FR), Los Angeles (US). Company registered in Switzerland. Privacy/anonymity-focused hoster. Only an email required at signup, Signup via VPNs, proxies, and Tor allowed, payments via NOWPayments, CoinPayments.net. Lightning Network (LN) payments via CoinPayments. Working on self/hosted payments. The Swiss dedicated servers are Large Storage and suitable for Bitcoin full nodes. All servers can be used for Tor nodes (exit nodes allowed if you block port 25). Netherlands VPS servers are Large Storage. No Google Captcha. Support via tickets or encrypted email. Dedicated servers in Switzerland, working on more locations. Use promo code BITCOINVPS for 10% off. Very responsive support.
ThunderVM - Locations: Germany (DE), United States (US), Iceland (IS), Switzerland (CH), Netherlands (NL), France (FR), Italy (IT), United Kingdom (UK), Lithuania (LT), Poland (PL). Company registered in italy. Ok with hosting full nodes and Tor relays, but not Tor exit nodes, or (on VPS) mining cryptocurrency. Uses hCaptcha. Provider states that all their servers/hypervisors are installed and encrypted by them for user security. Uses BTCPayServer and self-hosted Monero (XMR) payments. Accepts Lightning Network (LN) payments via NowPayments
Namecheap - Locations: US. Company registered in US.
Domains4Bitcoins - Locations: United States (US), India (IN). Company registered in United States. Payments via BitPay – KYC and BitPay account required to purchase
CoinsHosting - Locations: New York (US). Company registered in Delaware, US. Tor traffic allowed only on dedicated servers. Doesn’t check the information you provide at signup (only asks for name and email). May require for KYC for suspicious or abusive customers but provider states they do so very rarely. Payments via CoinPayments and Coinify. Uses Google Captchas.
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
Mondoze - Locations: Cyberjaya Malaysia (MY). Company registered in Malaysia. Payments via Plisio. Dedicated server available if you contact them directly. Tor traffic OK as long as you conform to their TOS. Anonymous sign up OK. Large storage maybe available if you contact support.
Casbay - Locations: Malaysia (MY), Singapore (SG). Company registered in Malaysia. Accepts Bitcoin (and many more cryptocurrencies) via Plisio. No restrictions on Tor traffic. They only verify email address on signup, but may require KYC if you trigger anti-abuse/anti-fraud monitoring systems. Uses Google Captchas. Offers Large Storage servers, may be suitable for full nodes. Even larger storage capacity available if you contact them directly.
Domains4Bitcoins - Locations: United States (US), India (IN). Company registered in United States. Payments via BitPay – KYC and BitPay account required to purchase
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
This guide helps you to run a private Mastodon Instance. I personally prefer to use mastodon with docker and docker-compose to isolate my application from main server environment. The following docker compose yaml file helps you to deploy your instance. After that we try to modify the settings of our application to make it private instance (Personal Instance with just One Account). Put the content of the following docker-compose config into a seperate folder.
# This file is designed for production server deployment, not local development work
# For a containerized local dev environment, see: https://github.com/mastodon/mastodon/blob/main/README.md#docker
services:
db:
restart: always
image: postgres:14-alpine
shm_size: 256mb
networks:
- internal_network
healthcheck:
test: ['CMD', 'pg_isready', '-U', 'postgres']
volumes:
- ./mastodon/postgres14:/var/lib/postgresql/data
environment:
- 'POSTGRES_HOST_AUTH_METHOD=trust'
- 'POSTGRES_USER=mastodon'
- 'POSTGRES_DB=mastodon'
- 'POSTGRES_PASSWORD=pasword'
redis:
restart: always
image: redis:7-alpine
networks:
- internal_network
healthcheck:
test: ['CMD', 'redis-cli', 'ping']
volumes:
- ./mastodon/redis:/data
# es:
# restart: always
# image: docker.elastic.co/elasticsearch/elasticsearch:7.17.4
# environment:
# - "ES_JAVA_OPTS=-Xms512m -Xmx512m -Des.enforce.bootstrap.checks=true"
# - "xpack.license.self_generated.type=basic"
# - "xpack.security.enabled=false"
# - "xpack.watcher.enabled=false"
# - "xpack.graph.enabled=false"
# - "xpack.ml.enabled=false"
# - "bootstrap.memory_lock=true"
# - "cluster.name=es-mastodon"
# - "discovery.type=single-node"
# - "thread_pool.write.queue_size=1000"
# networks:
# - external_network
# - internal_network
# healthcheck:
# test: ["CMD-SHELL", "curl --silent --fail localhost:9200/_cluster/health || exit 1"]
# volumes:
# - ./elasticsearch:/usr/share/elasticsearch/data
# ulimits:
# memlock:
# soft: -1
# hard: -1
# nofile:
# soft: 65536
# hard: 65536
# ports:
# - '127.0.0.1:9200:9200'
web:
# You can uncomment the following line if you want to not use the prebuilt image, for example if you have local code changes
# build: .
image: ghcr.io/mastodon/mastodon:v4.2.12
restart: always
env_file: .env.production
command: bundle exec puma -C config/puma.rb
networks:
- external_network
- internal_network
healthcheck:
# prettier-ignore
test: ['CMD-SHELL',"curl -s --noproxy localhost localhost:3000/health | grep -q 'OK' || exit 1"]
ports:
- '127.0.0.1:3000:3000'
depends_on:
- db
- redis
# - es
volumes:
- ./mastodon/public/system/:/mastodon/public/system
streaming:
# You can uncomment the following lines if you want to not use the prebuilt image, for example if you have local code changes
# build:
# dockerfile: ./streaming/Dockerfile
# context: .
image: ghcr.io/mastodon/mastodon-streaming:latest
restart: always
env_file: .env.production
command: node ./streaming/index.js
networks:
- external_network
- internal_network
healthcheck:
# prettier-ignore
test: ['CMD-SHELL', "curl -s --noproxy localhost localhost:4000/api/v1/streaming/health | grep -q 'OK' || exit 1"]
ports:
- '127.0.0.1:4000:4000'
depends_on:
- db
- redis
sidekiq:
build: .
image: ghcr.io/mastodon/mastodon:v4.2.12
restart: always
env_file: .env.production
command: bundle exec sidekiq
depends_on:
- db
- redis
networks:
- external_network
- internal_network
volumes:
- ./mastodon/public/system/:/mastodon/public/system/
healthcheck:
test: ['CMD-SHELL', "ps aux | grep '[s]idekiq\ 6' || false"]
## Uncomment to enable federation with tor instances along with adding the following ENV variables
## http_hidden_proxy=http://privoxy:8118
## ALLOW_ACCESS_TO_HIDDEN_SERVICE=true
# tor:
# image: sirboops/tor
# networks:
# - external_network
# - internal_network
#
# privoxy:
# image: sirboops/privoxy
# volumes:
# - ./priv-config:/opt/config
# networks:
# - external_network
# - internal_network
networks:
external_network:
internal_network:
internal: true
The .env.prodution
file store critical information about your instance.
It is better to use password with your redis instance.
DB_HOST=db
DB_PORT=5432
DB_NAME=mastodon
DB_USER=mastodon
DB_PASS=password
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_PASSWORD=
Run docker-compose run --rm web bundle exec rake mastodon:setup
in the folder which holds docker-compose.yml
then follow the instructions and answer the questions.
Run the following commands to create a user and make it admin.
export RAILS_ENV=production tootctl accounts create --email EMAIL --confirmed --role Admin
export RAILS_ENV=production tootctl accounts modify USERNAME --approve
export RAILS_ENV=production tootctl accounts approve USERNAME
The commands above give you the requirement information to login to your server.
I prefer using nginx to expose my instance to the internet.
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
upstream backend {
server 127.0.0.1:3000 fail_timeout=0;
}
upstream streaming {
# Instruct nginx to send connections to the server with the least number of connections
# to ensure load is distributed evenly.
least_conn;
server 127.0.0.1:4000 fail_timeout=0;
# Uncomment these lines for load-balancing multiple instances of streaming for scaling,
# this assumes your running the streaming server on ports 4000, 4001, and 4002:
# server 127.0.0.1:4001 fail_timeout=0;
# server 127.0.0.1:4002 fail_timeout=0;
}
proxy_cache_path /var/cache/nginx levels=1:2 keys_zone=CACHE:10m inactive=7d max_size=1g;
server {
listen <IP>:80;
server_name domain.com;
root /var/www/mastodon/public;
location /.well-known/acme-challenge/ { allow all; }
location / { return 301 https://$host$request_uri; }
}
server {
listen <IP>:443 ssl http2;
server_name domain.com;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-CHACHA20-POLY1305;
ssl_prefer_server_ciphers on;
ssl_session_cache shared:SSL:10m;
ssl_session_tickets off;
access_log /var/log/nginx/mastodonaccess.log;
error_log /var/log/nginx/mastodonerror.log warn;
ssl_certificate /root/ghariib.ir.crt;
ssl_certificate_key /root/ghariib.ir.key;
keepalive_timeout 70;
sendfile on;
client_max_body_size 99m;
root /var/www/mastodon/public;
gzip on;
gzip_disable "msie6";
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_buffers 16 8k;
gzip_http_version 1.1;
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript image/svg+xml image/x-icon;
location / {
try_files $uri @proxy;
}
location = /sw.js {
add_header Cache-Control "public, max-age=604800, must-revalidate";
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
try_files $uri =404;
}
location ~ ^/assets/ {
add_header Cache-Control "public, max-age=2419200, must-revalidate";
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
try_files $uri =404;
}
location ~ ^/avatars/ {
add_header Cache-Control "public, max-age=2419200, must-revalidate";
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
try_files $uri =404;
}
location ~ ^/emoji/ {
add_header Cache-Control "public, max-age=2419200, must-revalidate";
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
try_files $uri =404;
}
location ~ ^/headers/ {
add_header Cache-Control "public, max-age=2419200, must-revalidate";
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
try_files $uri =404;
}
location ~ ^/packs/ {
add_header Cache-Control "public, max-age=2419200, must-revalidate";
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
try_files $uri =404;
}
location ~ ^/shortcuts/ {
add_header Cache-Control "public, max-age=2419200, must-revalidate";
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
try_files $uri =404;
}
location ~ ^/sounds/ {
add_header Cache-Control "public, max-age=2419200, must-revalidate";
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
try_files $uri =404;
}
location ~ ^/system/ {
# root /root/mastodon/public/system; # New root path for /system/
add_header Cache-Control "public, max-age=2419200, immutable";
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
add_header X-Content-Type-Options nosniff;
add_header Content-Security-Policy "default-src 'none'; form-action 'none'";
try_files $uri =404;
}
location ^~ /api/v1/streaming {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Proxy "";
proxy_pass http://streaming;
proxy_buffering off;
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
tcp_nodelay on;
}
location @proxy {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Proxy "";
proxy_pass_header Server;
proxy_pass http://backend;
proxy_buffering on;
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_cache CACHE;
proxy_cache_valid 200 7d;
proxy_cache_valid 410 24h;
proxy_cache_use_stale error timeout updating http_500 http_502 http_503 http_504;
add_header X-Cached $upstream_cache_status;
tcp_nodelay on;
}
error_page 404 500 501 502 503 504 /500.html;
}
This guide helps you to run a private Matrix (Element) instance with Federation mechanism to communicate with other servers. I prefer to use docker with docker-compose to run an isolated environment.
version: '3.8'
services:
postgres:
restart: always
image: docker.io/postgres:13-alpine
environment:
LANG: en_US.utf8
POSTGRES_USER: synapse
POSTGRES_PASSWORD: password
POSTGRES_DB: synapse
volumes:
- ./matrix/schemas/:/var/lib/postgresql/data
synapse:
image: ghcr.io/element-hq/synapse:v1.113.0
environment:
- VIRTUAL_HOST=matrix.domain.com
- SYNAPSE_SERVER_NAME=matrix.domain.com
- SYNAPSE_REPORT_STATS=no
volumes:
- ./matrix/data/:/data
ports:
# - "8448:8448" # Matrix Federation API (HTTPS)
- "127.0.0.1:8008:8008" # Client-Server API (HTTP)
# - "3478:3478" # STUN/TURN
# - "5349:5349" # STUN/TURN over TLS
# - "49152-49300:49152-49300/udp" # TURN relay range
depends_on:
- postgres
restart: always
user: "991:991"
Generate homeserver.yaml
which is necessary for running element server.
docker run -v ./matrix/data:/data --rm -e SERVER_NAME=matrix.domain.com -e REPORT_STATS=yes ghcr.io/element-hq/synapse:v1.113.0 generate
Put the homeserver.yaml
file under the mentioned path in the docker-compose.yml
file.
# Configuration file for Synapse.
#
# This is a YAML file: see [1] for a quick introduction. Note in particular
# that *indentation is important*: all the elements of a list or dictionary
# should have the same indentation.
#
# [1] https://docs.ansible.com/ansible/latest/reference_appendices/YAMLSyntax.html
#
# For more information on how to configure Synapse, including a complete accounting of
# each option, go to docs/usage/configuration/config_documentation.md or
# https://element-hq.github.io/synapse/latest/usage/configuration/config_documentation.html
server_name: "matrix.domain.com"
pid_file: /data/homeserver.pid
listeners:
- port: 8008
tls: false
type: http
x_forwarded: true
resources:
- names: [client, federation]
compress: false
rc_login:
address:
per_second: 5.00
burst_count: 100
account:
per_second: 5.00
burst_count: 100
failed_attempts:
per_second: 5.00
burst_count: 100
#database:
# name: psycopg2
# args:
# user: synapse
# password: synapse
# host: postgres
# database: synapse
# cp_min: 5
# cp_max: 10
database:
name: psycopg2
args:
user: synapse
password: password
database: synapse
# This hostname is accessible through the docker network and is set
# by docker-compose. If you change the name of the service it will be different
host: postgres
log_config: "/data/matrix.domain.com.log.config"
media_store_path: /data/media_store
registration_shared_secret: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
report_stats: true
macaroon_secret_key: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
form_secret: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
enable_registration: false
enable_registration_without_verification: false
signing_key_path: "/data/matrix.domain.com.signing.key"
trusted_key_servers:
- server_name: "matrix.org"
# vim:ft=yaml
To expose the Matrix server to the internet I use nginx with the following configuration.
server {
listen <IP>:8448 ssl http2;
server_name matrix.domain.com;
ssl_certificate /root/matrix.domain.com.tls.crt;
ssl_certificate_key /root/matrix.domain.com.tls.key;
location / {
proxy_pass http://127.0.0.1:8008;
proxy_http_version 1.1;
### Set WebSocket headers ###
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header X-Forwarded-For $remote_addr;
# Nginx by default only allows file uploads up to 1M in size
# Increase client_max_body_size to match max_upload_size defined in homeserver.yaml
client_max_body_size 20M;
}
}
server {
listen <IP>:443 ssl http2;
server_name matrix.domain.com;
ssl_certificate /root/matrix.domain.com.tls.crt;
ssl_certificate_key /root/matrix.domain.com.tls.key;
location / {
proxy_pass http://127.0.0.1:8008;
proxy_http_version 1.1;
### Set WebSocket headers ###
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header X-Forwarded-For $remote_addr;
# Nginx by default only allows file uploads up to 1M in size
# Increase client_max_body_size to match max_upload_size defined in homeserver.yaml
client_max_body_size 20M;
}
}
A curated list of things related to GitHub Actions.
Actions are triggered by GitHub platform events directly in a repo and run on-demand workflows either on Linux, Windows or macOS virtual machines or inside a container in response. With GitHub Actions you can automate your workflow from idea to production.
Tool actions for your workflow.
Automate management for issues, pull requests, and releases.
Set up your GitHub Actions workflow with a specific version of your programming languages.
ssh-agent
- Run ssh-agent
with additional SSH keys to access private repositories..properties
files..properties
files.package.json
) version changes.$github.token
) and cmdlets, return value => action output.ergebnis/composer-normalize
to ensure your PHP project has a normalized composer.json
stolt/lean-package-validator
to ensure your package has only the required runtime
artifactsformat
and/or lint
script used by the packagePlease don’t hesitate to make a PR if you have more resources to share. Check out contributing.md for more information.
Analytics is the systematic computational analysis of data or statistics. It is used for the discovery, interpretation, and communication of meaningful patterns in data. Related: Database Management, Personal Dashboards
AGPL-3.0
Docker
GPL-3.0
Perl
AGPL-3.0
Nodejs/Docker
Apache-2.0
Java/Docker
AGPL-3.0
Nodejs/Docker
MIT
Go/Docker
GPL-2.0
C
EUPL-1.2
Go
GPL-3.0
PHP
AGPL-3.0
Java/Docker
MIT
PHP/Docker
MIT
Python/Nodejs
Apache-2.0
Go/Docker
GPL-2.0
PHP
AGPL-3.0
Elixir
MIT
Python
AGPL-3.0/MIT
Docker
BSD-2-Clause
Docker
AGPL-3.0
Docker/K8S/Go/Nodejs
Apache-2.0
Python/Docker
⚠
- Social media management, analytics, and reporting platform supporting nine social media networks out-of-the-box. GPL-3.0
Nodejs
Apache-2.0
Python
AGPL-3.0
Docker
MIT
Nodejs/Docker
Digital archiving and preservation software. Related: Content Management Systems (CMS) See also: awesome-web-archiving
MIT
Python/Docker
ECL-2.0
Ruby
MIT
Go/Docker
AGPL-3.0
Python
GPL-3.0
PHP
⚠
- Twitch VOD and Live Stream archiving platform. Includes a rendered chat for each archive. GPL-3.0
Docker
⚠
- An automatic Twitch recorder capable of capturing live streams, chat messages and stream metadata. MIT
Python/Nodejs/Docker
GPL-3.0
Nodejs
MIT
PHP
GPL-3.0
Go
BSD-3-Clause
Go
Automation software designed to reduce human intervention in processes. Related: Internet of Things (IoT), Software Development - Continuous Integration & Deployment
MIT
Docker
Apache-2.0
Python/Docker
AGPL-3.0
Docker
GPL-3.0
Python/Docker
Apache-2.0
Python/Docker
AGPL-3.0
Docker
GPL-3.0
Go/Docker
Apache-2.0
Docker/Java/Nodejs
WTFPL
Python
GPL-3.0
Python
BSD-3-Clause
Python
GPL-3.0
PHP
MIT
Ruby
Apache-2.0
Docker
MIT
Python
MIT
PHP
⚠
- LazyLibrarian is a program to follow authors and grab metadata for all your digital reading needs. It uses a combination of Goodreads Librarything and optionally GoogleBooks as sources for author info and book info. GPL-3.0
Python
MIT
Nodejs
GPL-3.0
C#/Docker
GPL-3.0
Docker
GPL-3.0
Python
⚠
- A Web GUI to automatically download music from YouTube add metadata from Spotify, Deezer or Musicbrainz. GPL-3.0
Python
AGPL-3.0
Python/Nodejs/Docker
GPL-3.0
Python/Docker
GPL-3.0
Python
AGPL-3.0
Go
GPL-3.0
Python
GPL-3.0
C#/Docker
GPL-3.0
Python/Docker
GPL-3.0
C#/Docker
Apache-2.0
Python
⚠
- Syncs YouTube channels and playlists to a locally hosted media server. AGPL-3.0
Docker/Python
GPL-3.0
Python
MIT
Nodejs/Docker
MIT
Python/Docker
MPL-2.0
Docker/Go/Nodejs
BSD-3-Clause
Go/Docker
A blog is a discussion or informational website consisting of discrete, diary-style text entries (posts). Related: Static Site Generators, Content Management Systems (CMS) See also: WeblogMatrix
Apache-2.0
Javascript
AGPL-3.0
PHP/Docker
BSD-3-Clause
PHP
GPL-2.0
PHP
GPL-2.0
PHP
MIT
Nodejs
MIT
Ruby
Apache-2.0
PHP
MIT
Python
GPL-3.0
PHP
BSD-3-Clause
PHP
AGPL-3.0
Go
Event scheduling, reservation, and appointment management software. Related: Polls and Events
GPL-3.0
Java
MIT
Nodejs
GPL-3.0
PHP
OSL-3.0
PHP/Nodejs
AGPL-3.0
Nodejs/Docker
GPL-3.0
Docker
Software which allows users to add, annotate, edit, and share bookmarks of web documents.
MIT
Nodejs/Docker
GPL-3.0
Python/deb
AGPL-3.0
Nodejs/PHP
AGPL-3.0
Haskell
MPL-2.0
Nodejs/Java
MIT
Nodejs/Docker
MIT
Ruby
AGPL-3.0
Docker
GPL-3.0
Docker/PHP
MIT
Docker/Python/Nodejs
MIT
Docker/Nodejs
MIT
Docker
AGPL-3.0
Go/Docker
GPL-3.0
Docker/Nodejs/PHP
Zlib
PHP/deb
MIT
Go/Docker
GPL-3.0
Docker
AGPL-3.0
PHP
CalDAV and CardDAV protocol servers and web clients/interfaces for Electronic calendar, address book and contact management. Related: Groupware See also: Comparison of CalDAV and CardDAV implementations - Wikipedia
GPL-3.0
PHP
GPL-2.0
PHP/deb
MIT
PHP
AGPL-3.0
Python/Django
AGPL-3.0
Javascript
GPL-3.0
Nodejs/Docker
GPL-3.0
Python/deb
MIT
PHP
GPL-3.0
Python/deb
Communication software used to provide remote access to systems and exchange files and messages in text, audio and/or video formats between different computers or users, using their own custom protocols.
MIT
Go/Docker
MIT
Python/Docker/deb
MIT
Go/Docker/K8S
MIT
Ruby/Docker/K8S
GPL-2.0
Nodejs
Apache-2.0
Rust
MIT
Nodejs
Apache-2.0
Docker
Apache-2.0
Go
Apache-2.0
Nodejs
GPL-3.0
C
MIT
Go/Docker
GPL-2.0
Java
GPL-3.0
C++
Apache-2.0
PHP
AGPL-3.0
Docker/Nodejs/Shell
Apache-2.0
PHP
AGPL-3.0/Apache-2.0
Go/Docker/K8S
MIT
Nodejs
BSD-3-Clause
C++/deb
MIT
C#
MIT
Docker/Nodejs
Apache-2.0/GPL-2.0
Go/Docker/K8S
Apache-2.0
Go
ISC
Go
GPL-2.0
C++
AGPL-3.0
Rust
MIT
Nodejs/Docker/K8S
GPL-3.0
Docker/Go
MIT
Python
AGPL-3.0
Haskell
MIT
Nodejs/Docker/K8S
GPL-3.0
C++
Apache-2.0
Python/deb
CC0-1.0
Java
Apache-2.0
Docker/K8S/Nodejs
⚠
- Outgoing SMS API that uses carrier-specific gateways to deliver your text messages for free, and without ads. MIT
Javascript
MIT
Docker/K8S
GPL-3.0
Go
GPL-3.0
C
AGPL-3.0
Docker
AGPL-3.0
Nodejs/Docker
Apache-2.0
Go/Docker
Apache-2.0
Python
Simple deployment of E-mail servers, e.g. for inexperienced or impatient admins.
MIT
PHP/Docker
GPL-3.0
Ansible/Python
MIT
Docker
LGPL-3.0
Go
GPL-3.0
Shell
GPL-3.0
Shell
GPL-3.0
Python
GPL-3.0
Shell
GPL-3.0
Go
CC0-1.0
Shell
GPL-2.0
Docker/PHP
MIT
Docker/Python
ISC
Python
MIT
Docker/Ruby
GPL-3.0
Nix
MIT
Docker/Python
AGPL-3.0
Rust/Docker
EUPL-1.2
Nodejs/Docker
Mail Delivery Agents (MDAs) - IMAP/POP3 server software.
BSD-3-Clause-Attribution
C
MIT/LGPL-2.1
C/deb
GPL-3.0
C
AGPL-3.0
Rust/Docker
Mail Transfer Agents (MTAs) - SMTP servers.
Apache-2.0
Go
GPL-3.0
C/deb
BSD-3-Clause
C
GPL-3.0
C++
GPL-3.0
C/deb
MIT
Nodejs
MIT
Ruby
ISC
C/deb
Apache-2.0
Python/PHP/Docker
IPL-1.0
C/deb
Sendmail
C/deb
MIT
Python
AGPL-3.0
Rust
Mailing list servers and mass mailing software - one message to many recipients.
GPL-2.0
Perl
GPL-3.0
Python
AGPL-3.0
Docker
AGPL-3.0
Go/Docker
GPL-3.0
Python
GPL-3.0
PHP
AGPL-3.0
PHP
GPL-3.0
Python
GPL-3.0
Ruby
GPL-2.0
Perl
Webmail clients.
LGPL-2.1
PHP
GPL-3.0
PHP/deb
AGPL-3.0
PHP
GPL-2.0
PHP
IRC communication software.
Artistic-2.0
Perl/Docker
MIT
Go/Docker
GPL-3.0
Nodejs
GPL-2.0
C++/Docker
Apache-2.0
Nodejs
GPL-2.0
C/deb
GPL-2.0
C++
BSD-3-Clause
Go
MIT
Nodejs/Docker
GPL-2.0
C
GPL-3.0
C/Docker/deb
Apache-2.0
C++/deb
GPL-2.0
C/deb
AGPL-3.0
PHP
MIT
Docker/PHP
AGPL-3.0
C/Docker
GPL-2.0
PHP
MPL-2.0
C
MPL-1.1
PHP
GPL-2.0
C/deb
GPL-2.0
C
MIT
Docker/K8S
Apache-2.0
Java
AGPL-3.0
Nodejs/Go/Docker
GPL-3.0
Python
GPL-2.0
C++/Ruby
Social Networking and Forum software.
AGPL-3.0
Elixir/Docker
GPL-3.0
PHP
Apache-2.0
Docker/Go
EUPL-1.2
Assembly
GPL-2.0
PHP
AGPL-3.0
Docker/Nodejs
Apache-2.0
Docker/Nodejs
AGPL-3.0
Ruby
GPL-2.0
Docker
GPL-2.0
PHP
BSD-2-Clause
Shell/Docker/Nodejs
MIT
PHP
AGPL-3.0
PHP
AGPL-3.0
Docker/Go
AGPL-3.0
Docker/Rust
MIT
PHP
AGPL-3.0
PHP
MIT
Python/Docker
AGPL-3.0
PHP/Nodejs/Docker
AGPL-3.0
Docker/Rust
⚠
- Private front-end for Reddit written in Rust. AGPL-3.0
Rust
AGPL-3.0
Docker
AGPL-3.0
Ruby
GPL-2.0
Docker
AGPL-3.0
Nodejs/Docker
AGPL-3.0
PHP/Docker
LGPL-3.0
PHP
⚠
- An alternative front end to twitter. (Source Code) AGPL-3.0
Nim/Docker
GPL-3.0
Nodejs
BSD-3-Clause
Go
GPL-2.0
PHP
GPL-2.0
PHP
AGPL-3.0
PHP
AGPL-3.0
Elixir
AGPL-3.0
Ruby
MIT
Docker/Go
AGPL-3.0
Ruby/Nodejs
Apache-2.0
Java/Docker/K8S
BSD-3-Clause
PHP
AGPL-3.0
Docker/Python
BSD-3-Clause
Docker
AGPL-3.0
Docker/Scala
MIT
Go
AGPL-3.0
PHP
Video/Web Conferencing tools and software. Related: Conference Management
LGPL-3.0
Java
MIT
Go
GPL-3.0
C
Apache-2.0
Nodejs/Docker/deb
Apache-2.0
Java/deb
MIT
Nodejs/Docker
AGPL-3.0
Nodejs/Docker
AGPL-3.0
Nodejs/Docker
MIT
Docker/Go
Extensible Messaging and Presence Protocol servers.
GPL-2.0
Erlang/Docker
GPL-2.0
Erlang/Docker/K8S
Apache-2.0
Java
MIT
Lua
Apache-2.0
Docker
GPL-3.0
Java
Extensible Messaging and Presence Protocol Web clients/interfaces.
MPL-2.0
Javascript
MIT
Javascript
AGPL-3.0
Python
AGPL-3.0
Python
Management and administration tools for community supported agriculture and food cooperatives. Related: E-commerce
MIT
Ruby
MIT
Docker
AGPL-3.0
PHP/Docker
AGPL-3.0
Docker/Ruby
LGPL-3.0
Python
MIT
PHP
AGPL-3.0
Ruby
AGPL-3.0
Scala
AGPL-3.0
Nodejs
Software for submission of abstracts and preparation/management of academic conferences.
GPL-2.0
PHP
MIT
Ruby/Docker
MIT
Python
AGPL-3.0
PHP/Docker
MIT
Docker
MIT
Ruby/Docker
Apache-2.0
Python
Content Management Systems offer a practical way to setup a website with many features, using third party plugins, themes and functionality that are easy to add and customize. Related: Blogging Platforms, Static Site Generators, Photo and Video Galleries
LGPL-3.0
Java
MIT
Nodejs
GPL-2.0
PHP
LGPL-2.1
PHP
⚠
- Simple application to build a site or blog in seconds. Bludit uses flat-files (text files in JSON format) to store posts and pages. (Demo, Source Code) MIT
PHP
MIT
PHP
GPL-2.0
PHP
MIT
PHP
MIT
PHP
LGPL-3.0
PHP
CPAL-1.0
PHP
GPL-2.0
PHP
AGPL-3.0
PHP
MIT
Nodejs
GPL-2.0
PHP
MIT
Nodejs
GPL-2.0
PHP
GPL-3.0
PHP
AGPL-3.0
Ruby
GPL-3.0
PHP
MIT
Nodejs
GPL-3.0
PHP/Docker
ZPL-2.0
Python/Docker
MIT
Ruby
AGPL-3.0
Go
MIT
PHP/Docker
MIT
PHP
BSD-3-Clause
PHP
GPL-3.0
PHP
MIT
.NET
MIT
Nodejs
GPL-2.0
PHP
MIT
PHP
GPL-2.0
PHP
MIT
.NET
BSD-3-Clause
Python
MIT
PHP
MIT
PHP
GPL-2.0
PHP
Web interfaces for database management. Includes tools for database analytics and visualization. Related: Analytics, Automation See also: dbdb.io - Database of Databases
Apache-2.0/GPL-2.0
PHP
MIT
Elixir/Nodejs/Docker
MIT
Docker
MIT
Docker/K8S/Go
MIT
Nodejs/Docker
Apache-2.0
Docker
MIT
Docker
Apache-2.0
Python/Docker
GPL-3.0
Nodejs/Docker
MIT
Nodejs
GPL-2.0
PHP
GPL-3.0
Docker/Python
GPL-3.0
Docker/Python
GPL-3.0
Nodejs/Docker
AGPL-3.0
Docker
DNS servers and management tools with advertisement blocking functionality, primarily aimed at home or small networks. See also: awesome-sysadmin/DNS - Servers, awesome-sysadmin/DNS - Control Panels & Domain Management
GPL-3.0
Docker
Apache-2.0
Go/Docker
Apache-2.0
Shell
EUPL-1.2
Shell/PHP/Docker
GPL-3.0
Docker/C#
A document management system (DMS) is a system used to receive, track, manage and store documents and reduce paper.
MIT
PHP/Nodejs/Docker
GPL-3.0
Scala/Java/Docker
AGPL-3.0
Docker
GPL-3.0
Docker/Ruby
GPL-3.0
PHP
Apache-2.0
Python
⚠
- Free, open source & self-hosted document signing software (alternative to DocuSign). (Source Code) AGPL-3.0
Nodejs/Docker
GPL-3.0
Python/Docker
Apache-2.0
Python/Docker/K8S
Apache-2.0
Docker/Java
GPL-2.0
Docker/Java
Ebook library management software.
MIT
Java/Docker
GPL-3.0
Python
GPL-3.0
Python/deb
GPL-3.0
.NET/Docker
MIT
Java/Docker
GPL-3.0
C++
MIT
Rust
GPL-3.0
PHP
Institutional repository and digital library management software.
BSD-3-Clause
Java
GPL-3.0
Perl
Apache-2.0
Java
MIT
Python
GPL-3.0
PHP
Apache-2.0
Ruby
An integrated library system is an enterprise resource planning system for a library, used to track items owned, orders made, bills paid, and patrons who have borrowed. Related: Content Management Systems (CMS), Archiving and Digital Preservation (DP)
GPL-2.0
PLpgSQL
GPL-3.0
Perl
AGPL-3.0
Python/Docker
E-commerce software. Related: Community-Supported Agriculture (CSA)
LGPL-3.0/MIT
PHP
MIT
PHP
GPL-3.0
PHP
GPL-2.0
PHP
⚠
- E-commerce platform with essential commerce features. Modular architecture and fully customizable. (Demo, Source Code) GPL-3.0
Docker/Nodejs
⚠
- Shopping cart in 1 file (with support for payment by card or cryptocurrency). MIT
Go/Docker
OSL-3.0
PHP
MIT
Nodejs
Apache-2.0
PHP
MIT
PHP
GPL-3.0
PHP
GPL-3.0
PHP
OSL-3.0
PHP
Apache-2.0
Python/Docker
MIT
PHP
BSD-3-Clause
Docker/Python
MIT
PHP
BSD-3-Clause
Ruby/Docker
BSD-3-Clause
Ruby
MIT
PHP
LGPL-3.0
PHP
MIT
Nodejs
GPL-3.0
PHP
Federated identity and authentication software. Please visit awesome-sysadmin/Identity Management
A news aggregator, also termed a feed aggregator, feed reader, news reader, RSS reader, is an application that aggregates web content such as newspapers/blogs/vlogs/podcasts in one location for easy viewing.
MIT
Nodejs
Apache-2.0
Java/Docker
⚠
- A simple, lightweight & customizable RSS News Feed for your Discord Server. MIT
Docker
GPL-3.0
Go/Docker
AGPL-3.0
PHP/Docker
MIT
Go/Docker
MIT
Go
AGPL-3.0
Docker/Python
CC0-1.0
PHP
AGPL-3.0
PHP
Apache-2.0
Go/deb/Docker
MIT
Python
AGPL-3.0
Python
BSD-3-Clause
Python
MIT
Go/Docker
Unlicense
PHP/Docker
MIT
PHP
GPL-2.0
Python/deb
MIT
Nodejs/Docker
GPL-3.0
PHP
MIT
Ruby
MIT
Python
GPL-3.0
Docker/PHP
MIT
Go
File transfer, sharing and synchronization software software. Related: Groupware
GPL-3.0
Haskell
Apache-2.0
Python
AGPL-3.0
PHP/deb
BSD-2-Clause
C/deb
AGPL-3.0
PHP/Docker/deb
AGPL-3.0
Java
AGPL-3.0
Nodejs/Docker
AGPL-3.0
Go
GPL-3.0
C
GPL-2.0/GPL-3.0/AGPL-3.0/Apache-2.0
C
MPL-2.0
Go/Docker/deb
GPL-3.0
deb/OCaml
Object storage is a computer data storage that manages data as objects, as opposed to other storage architectures like file systems which manages data as a file hierarchy, and block storage which manages data as blocks within sectors and tracks.
AGPL-3.0
Docker/Rust
AGPL-3.0
Go/Docker/K8S
Apache-2.0
Go
AGPL-3.0
Go/deb/Docker
Apache-2.0
Docker/Nodejs
Apache-2.0
Go/Docker
Peer-to-peer file sharing is the distribution and sharing of digital media using peer-to-peer (P2P) networking technology.
MIT
Nodejs
MIT
Nodejs
GPL-3.0
Python/deb
MIT
Nodejs
GPL-2.0
C++
MPL-2.0
Nodejs/Docker
GPL-3.0
C++/deb
Simplified file servers for sharing of one-time/short-lived/temporary files, providing single-click or drag-and-drop upload functionality.
ISC
Nodejs/Docker
MIT
Docker/Nodejs
AGPL-3.0
Python
GPL-3.0
PHP/Docker
GPL-3.0
C++/deb
GPL-3.0
Go/Docker
MIT
Go
Apache-2.0
Go/Docker
AGPL-3.0
Perl
GPL-2.0
Python/deb
GPL-3.0
Docker
AGPL-3.0
Go/Docker
GPL-3.0
Docker
Apache-2.0
PHP/Docker
BSD-2-Clause
Docker/Nodejs
MIT
Go/Docker
GPL-2.0
PHP
BSD-2-Clause
Nodejs
LGPL-3.0
Docker/Go
GPL-3.0
Scala/Java/deb/Docker
MIT
Docker
MIT
Go
MIT
PHP
MIT
PHP
AGPL-3.0
PHP/Docker
MIT
Docker/Nodejs
Web-based file managers. Related: Groupware
GPL-3.0
Javascript
MIT
Python
MIT
PHP
Apache-2.0
Go
MIT
PHP/Docker
AGPL-3.0
Docker
MIT
Go
MIT
PHP
MIT
Go/Docker/K8S
MIT
Rust
BSD-4-Clause
PHP
MIT
Nodejs
AGPL-3.0
Nodejs
GPL-3.0
PHP
Multiplayer game servers and browser games. Related: Games - Administrative Utilities & Control Panels
MIT/GPL-2.0/Zlib
C++/C/deb
MPL-2.0
Javascript
AGPL-3.0
Nodejs
AGPL-3.0
Scala
GPL-3.0
Java
LGPL-2.1/MIT/Zlib
C++/deb
⚠
- Multi Theft Auto (MTA) is a software project that adds network play functionality to Rockstar North’s Grand Theft Auto game series, in which this functionality is not originally found. (Source Code) GPL-3.0
C++
GPL-2.0
C++/Docker
GPL-3.0
Python/C++
MIT
Python
Apache-2.0
Scala
Zlib/MIT/CC-BY-SA-4.0
C/C++/deb
⚠
- RomM (Rom Manager) is a web based retro roms manager integrated with IGDB. GPL-3.0
Docker
GPL-3.0
Nodejs
GPL-2.0
C++/deb
GPL-3.0
Rust
MIT
Nodejs
GPL-2.0
Lua
Utilities for managing game servers. Related: Games
GPL-3.0
C++
GPL-3.0
Docker/Python
GPL-3.0
PHP/Shell
GPL-3.0
Nodejs
⚠
- LAN Party game caching made easy. (Source Code) MIT
Docker/Shell
MIT
Shell
AGPL-3.0
Docker/Rust
MIT
PHP
Apache-2.0
Go
MIT
Go
CC-BY-SA-4.0
PHP
GPL-3.0
C++/deb/Docker
Genealogy software used to record, organize, and publish genealogical data.
MIT
Javascript
GPL-2.0
OCaml
AGPL-3.0
Docker
GPL-3.0
PHP
Collaborative software or groupware is designed to help people working on a common task to attain their goals. Groupware often regroups multiple services such as file sharing, calendar/events management, address books… in a single, integrated application.
GPL-3.0
C/Docker/Shell
Apache-2.0
Go
GPL-3.0
Nodejs
AGPL-3.0
Nodejs
AGPL-3.0
Nodejs
AGPL-3.0
Nodejs
GPL-2.0
PHP
AGPL-3.0
PHP
AGPL-3.0
PHP
Apache-2.0
Java
LGPL-2.1
Objective-C
AGPL-3.0
PHP
AGPL-3.0
Docker
AGPL-3.0/LGPL-3.0/MIT
Python
AGPL-3.0
Docker
GPL-2.0/CPAL-1.0
Java
A human resources management system combines a number of systems and processes to ensure the easy management of human resources, business processes and data.
GPL-2.0
PHP/Docker
GPL-2.0
PHP
MIT
Nodejs
Internet of Things describes physical objects with sensors, processing ability, software, and other technologies that connect and exchange data with other devices over the Internet.
Apache-2.0
Java/Docker/K8S
GPL-3.0
C/C++/Docker/Shell
Apache-2.0
Docker/Erlang
GPL-3.0
Perl
Apache-2.0
Nodejs/Docker/K8S
Apache-2.0
Nodejs/Docker
Apache-2.0
Python/Docker
MIT
Nodejs
Apache-2.0
Nodejs/Docker
EPL-2.0
Java
AGPL-3.0
Java
GPL-3.0
Python
GPL-3.0
C/C++
Apache-2.0
Java/Docker/K8S
MPL-2.0
Nodejs
Inventory management software. Related: Money, Budgeting & Management, Resource Planning See also: awesome-sysadmin/IT Asset Management
AGPL-3.0
Nodejs
MIT
Python
AGPL-3.0
Docker/PHP/Nodejs
AGPL-3.0
Nodejs
Knowledge management is the collection of methods relating to creating, sharing, using and managing the knowledge and information. Related: Note-taking & Editors, Wikis, Database Management
MIT
Docker/Rust
AGPL-3.0
Nodejs/PHP
MIT
Docker/Nodejs
Tools and software to help with education and learning.
AGPL-3.0
Ruby
GPL-3.0
PHP
AGPL-3.0
PHP
AGPL-3.0
Nodejs/PHP
AGPL-3.0
PHP
AGPL-3.0
Python
GPL-3.0
PHP
GPL-3.0
PHP
AGPL-3.0
Python/Docker
GPL-3.0
PHP
GPL-2.0
PHP
Apache-2.0
Java
GPL-2.0
Perl
MIT
Python
GPL-2.0
PHP
MIT
Docker
Software to manage 3D printers, CNC machines and other physical manufacturing tools.
MIT
Nodejs
GPL-3.0
Docker/Nodejs
GPL-3.0
Docker/Python
MIT
Docker
AGPL-3.0
Docker/Python
Maps, cartography, GIS and GPS software. See also: awesome-openstreetmap, awesome-gis
MIT
Javascript
MIT
Go/Docker
Apache-2.0
Java
GPL-2.0
C
BSD-2-Clause
C++
GPL-3.0
Docker/Java
GPL-2.0
Ruby
LGPL-3.0
Java/Javascript
⚠
- Store and access data published by OwnTracks location tracking apps. GPL-2.0
C/Lua/deb/Docker
BSD-2-Clause
Nodejs/Docker
Apache-2.0
Java
GPL-3.0
PHP
Audio streaming tools and software.
AGPL-3.0
PHP
GPL-3.0
Docker/deb/Nodejs
MIT
Rust
Apache-2.0
Docker
MIT
Python/deb
MIT
Docker/Ruby
Apache-2.0
Go
BSD-3-Clause
Python/Django
GPL-3.0
Go/Docker
⚠
- Web app using Invidious API for listening to Youtube audio sources. (Source Code) MIT
Nodejs/Docker
MIT
PHP
AGPL-3.0
Docker/PHP
GPL-3.0
Docker/deb/C++
GPL-3.0
Python/Docker
GPL-3.0
PHP
Apache-2.0
Python/deb
GPL-2.0
C++
GPL-2.0
Nodejs
MIT
Nodejs/Docker
BSD-3-Clause
C++/deb
GPL-3.0
Docker/Go
GPL-3.0
Docker
MIT
Rust/Docker
GPL-3.0
C++/deb
MIT
Nodejs
AGPL-3.0
Python/deb
MIT
Python/Docker
⚠
- Convert YouTube and Twitch channels to podcasts, no storage required. Transcodes VoDs to MP3 192k on the fly, generates an RSS feed to use in podcast clients. MIT
Docker
Multimedia streaming tools and software. Related: Media Streaming - Video Streaming, Media Streaming - Audio Streaming
GPL-2.0
Rust
GPL-2.0
Docker/deb/C++
GPL-2.0
C
GPL-2.0
C#/deb/Docker
ISC
Docker/Nodejs
GPL-2.0
C++/deb
GPL-3.0
Docker
MIT
PHP
GPL-3.0
Docker
AGPL-3.0
C++
BSD-3-Clause
C++
GPL-2.0
C
GPL-3.0
C
AGPL-3.0
Docker/Go
GPL-3.0
C/deb
⚠
- Self-hosted collaborative listening platform. Users take turns playing media—songs, talks, gameplay videos, or anything else—from a variety of media sources like YouTube and SoundCloud. (Demo, Source Code) MIT
Nodejs
Video streaming tools and software. Related: Video Surveillance, Media Streaming - Multimedia Streaming
MIT
Nodejs
⚠
- Alternative YouTube front-end. (Demo) AGPL-3.0
Docker/Crystal
AGPL-3.0
Python/Docker
⚠
- Media server for Movies and TV Shows with a responsive Vue.js frontend. It has robust transcoding support as well as federation capabilities to share your library with your friends. AGPL-3.0
Nodejs
MIT
Python
GPL-3.0
C++/Docker
MIT
Go
AGPL-3.0
Nodejs
MIT
Python/Docker
Apache-2.0
Nodejs/Docker
MIT
Docker/C++
MIT
Java
MIT
Nodejs/Haxe
⚠
- Organize, search, and enjoy your YouTube collection. Subscribe, download, and track viewed content with metadata indexing and a user-friendly interface. (Source Code, Clients) GPL-3.0
Docker
MIT
Go
GPL-2.0
C/deb
Software that does not fit in another section.
AGPL-3.0
PHP/Docker
⚠
- AlertHub is a simple tool to get alerted from GitHub releases. MIT
Nodejs/Docker
GPL-3.0
Nodejs
Apache-2.0
Elixir/Docker
BSD-2-Clause
Python
⚠
- Honeypot framework designed to provide a highly secure environment for detecting and analyzing cyber attacks. (Demo, Source Code) MIT
Docker/K8S/Go
Apache-2.0
Go/deb/Docker/K8S
MIT
PHP/Docker
GPL-2.0
C
Apache-2.0
Javascript
AGPL-3.0
Nodejs
AGPL-3.0
Nodejs
AGPL-3.0
Nodejs
AGPL-3.0
Nodejs
AGPL-3.0
Nodejs
⚠
- View YouTube videos in a distraction-free interface (documentation in French). (Demo, Source Code) AGPL-3.0
Nodejs/PHP
AGPL-3.0
Nodejs/PHP
MIT
Python/Docker
GPL-3.0
PHP
GPL-2.0/BSD-3-Clause/MIT
PHP
AGPL-3.0
PHP
AGPL-3.0
Python/Docker/deb
⚠
- Fasten is an open-source, self-hosted, personal/family electronic medical record aggregator, designed to integrate with 100,000’s of insurances/hospitals/clinics in the United States. GPL-3.0
Go/Docker
BSD-3-Clause
Docker/K8S
GPL-3.0
Docker/K8S/Go
MIT
Docker
MIT
Go
⚠
- Hassle-Free Way to Self-Host Google Fonts. Get eot, ttf, svg, woff and woff2 files + CSS snippets. (Demo) MIT
Nodejs
MIT
Go/Docker
MIT
Python/Docker/K8S
GPL-3.0/CC-BY-SA-3.0
Nodejs/Docker
MIT
PHP/Docker
MIT
PHP
MIT
Docker/Nodejs
GPL-3.0
Docker
MIT
Docker/PHP
⚠
- A free and open-source inpainting tool powered by SOTA AI model. Apache-2.0
Python/Docker
LGPL-2.1
Java/Docker
AGPL-3.0
Docker/Python
AGPL-3.0
Deno
MIT
Go
⚠
- With Mere Medical, you can finally manage all of your medical records from Epic MyChart, Cerner, and OnPatient patient portals in one place. Privacy-focused, self-hosted, and offline-first. (Demo, Source Code) GPL-3.0
Docker/Nodejs
AGPL-3.0
PHP/Docker
MIT
PHP
⚠
- All in one IP Toolbox. Easy to check what’s your IPs, IP geolocation, check for DNS leaks, examine WebRTC connections, speed test, ping test, MTR test, check website availability and more. (Demo, Source Code) MIT
Nodejs/Docker
Apache-2.0
Docker/Go
AGPL-3.0
Nodejs/Docker
AGPL-3.0
Docker/Nodejs
GPL-2.0
C#/deb
AGPL-3.0
Docker
Apache-2.0
Go
MIT
Docker
⚠
- Overseerr is a free and open source software application for managing requests for your media library. It integrates with your existing services, such as Sonarr, Radarr, and Plex!. (Source Code) MIT
Docker
MPL-2.0
Docker
GPL-2.0
Javascript
MIT
Docker/Nodejs
MIT
Nodejs
MIT
Javascript
GPL-2.0
PHP
GPL-2.0
C
MIT
Docker
AGPL-3.0
Nodejs
Apache-2.0
Go/Docker/K8S
MIT
Elixir/Docker
MIT
Go/Docker
MIT
Nodejs/Docker
MIT
Docker
MIT
PHP/Docker
GPL-3.0
Python/deb
MIT
Docker/Nodejs
AGPL-3.0
Python/Docker
Money management and budgeting software. Related: Inventory Management, Resource Planning
MIT
Nodejs/Docker
AGPL-3.0
Docker
MIT
Docker/Python/Nodejs
MIT
C#
AGPL-3.0
Deno
MIT
Nodejs
Apache-2.0
Scala
MIT
Python
AGPL-3.0
PHP/Docker
Apache-2.0
PHP/Docker
GPL-3.0
PHP
AGPL-3.0
Docker/Nodejs
GPL-2.0
PHP
AGPL-3.0
Docker/Python
⚠
- HyperSwitch is an Open Source Financial Switch to make payments Fast, Reliable and Affordable. It lets you connect with multiple payment processors and route traffic effortlessly, all with a single API integration. (Source Code) Apache-2.0
Docker/Rust
BSD-3-Clause
Docker/Python
AAL
PHP/Docker/K8S
MIT
PHP
Apache-2.0
Java/Docker
MIT
Nodejs/Docker
AGPL-3.0
Docker
GPL-3.0
Python/Docker
MIT
Docker
MIT
Docker/C#
⚠
- Easy-to-use receipt manager, powered by AI. Allows users to create receipts effortlessly and quickly, categorize and more. (Demo, Source Code) AGPL-3.0
Docker
MIT
Go
MIT
PHP
Note taking editors. Related: Wikis
MIT
PHP/Docker
MIT
Docker
AGPL-3.0
Go
Apache-2.0
Javascript/Docker
MIT
Docker
AGPL-3.0
Docker/Nodejs
MIT
Nodejs
GPL-3.0
C++
Apache-2.0
Elixir/Docker
MIT
Nodejs
MIT
Docker/Go
Apache-2.0
PHP
AGPL-3.0
Docker
GPL-3.0
Perl
AGPL-3.0
Ruby
GPL-3.0
PHP
GPL-3.0
Ruby
AGPL-3.0
Nodejs/Docker/K8S
MIT
Javascript
GPL-3.0
CommonLisp
MIT
Javascript
An office suite is a collection of productivity software usually containing at least a word processor, spreadsheet and a presentation program.
MPL-2.0
C++
AGPL-3.0
Nodejs/Docker
AGPL-3.0
Nodejs/PHP
Apache-2.0
Nodejs/Docker
Apache-2.0
Nodejs/Python/Docker
MIT
C++
AGPL-3.0
Nodejs/Docker
LGPL-3.0
PHP
A password manager allows users to store, generate, and manage their passwords for local applications and online services.
⚠
- Password manager with webapp, browser extension, and mobile app. (Source Code) AGPL-3.0
Docker/C#
GPL-3.0
Nodejs
AGPL-3.0
PHP/deb/K8S/Docker
AGPL-3.0
Docker/Django
GPL-3.0
PHP
Apache-2.0
Python
GPL-3.0
PHP
GPL-3.0
Rust/Docker
A pastebin is a type of online content-hosting service used for sharing and storing code and text.
BSD-2-Clause
Python/deb
WTFPL/0BSD
Rust
MIT
Docker/Django
MIT
Docker
MIT
Docker/PHP
MIT
Docker/Nodejs
AGPL-3.0
Docker/Go/Nodejs
GPL-3.0
Docker
GPL-3.0
Docker/K8S/Ruby
MIT
Docker/K8S/Java
Zlib
PHP
MIT
Rust
MIT
Docker
Apache-2.0
Go/Docker
MIT
Go
GPL-3.0
Rust/Docker
MIT
Rust/Docker
MIT
Nodejs/Docker
MIT
Go/Nodejs/Docker
Dashboards for accessing information and applications. Related: Monitoring, Bookmarks and Link Sharing
MIT
Nodejs/Docker
GPL-3.0
.NET/Docker
MIT
PHP
MIT
Javascript/Docker
MIT
Docker/Nodejs
GPL-3.0
Docker/Nodejs
MIT
PHP
Apache-2.0
Docker/K8S/Nodejs
MIT
Docker
MIT
Docker/PHP
AGPL-3.0
PHP/Docker
MIT
Javascript
MIT
Docker/Nodejs
GPL-3.0
PHP/Docker
AGPL-3.0
Go/Docker
GPL-3.0
Docker
MIT
Docker
AGPL-3.0
Docker/Python
⚠
- Allows you to record your Spotify listening activity and have statistics about them served through a Web application. MIT
Nodejs/Docker
A gallery is software that helps the user publish or share photos, pictures, videos or other digital media. Related: Static Site Generators, Photo and Video Galleries, Content Management Systems (CMS)
AGPL-3.0
PHP/Docker
GPL-3.0
PHP
GPL-3.0
Docker/C#/.NET
AGPL-3.0
Docker/Nodejs/Go
MIT
Nodejs/Docker
AGPL-3.0
Docker
MIT
Python/Docker
MIT
PHP/Docker
AGPL-3.0
Python
GPL-3.0
PHP
AGPL-3.0
PHP
AGPL-3.0
Go/Docker
GPL-3.0
Go/Docker
MIT
Docker/Nodejs
GPL-2.0
PHP
MIT
Python
GPL-3.0
Docker/Rust
MIT
Docker/Rust
MIT
Python/Docker
GPL-2.0
PHP
Software for organising polls and events. Related: Booking and Scheduling
GPL-3.0
Docker/Python
AGPL-3.0
Docker/Nodejs
AGPL-3.0
Docker/Nodejs
GPL-3.0
Elixir/Docker
AGPL-3.0
Docker
MIT
Docker/Python
MIT
Docker
AGPL-3.0
Nodejs/Docker
CECILL-B
PHP
AGPL-3.0
Nodejs
GPL-3.0
Nodejs/Docker
AGPL-3.0
Ruby
AGPL-3.0
PHP/Nodejs/Docker
GPL-2.0
PHP
MIT
PHP
GPL-3.0
Elixir/Docker
GPL-3.0
Python/Docker
A proxy is a server application that acts as an intermediary between a client requesting a resource and the server providing that resource. This section about forward (i.e. outgoing) proxies. For reverse proxies, see the Web Server section. Related: Web Servers
MIT
Go/Docker/K8S
ISC
C/deb
MIT
Rust/Docker
Apache-2.0
Docker/Nodejs
GPL-2.0
C/deb
MIT
Go/Docker
Apache-2.0
Docker
GPL-2.0
C/deb
GPL-2.0
C/deb
MIT
Nodejs/Docker
Software and tools for managing recipes.
MIT
PHP/Docker
AGPL-3.0
Docker/deb
MIT
Python
AGPL-3.0
Nodejs
MIT
Docker
GPL-3.0
Docker/Python
Remote desktop and SSH servers and web interfaces for remote management of computer systems.
Apache-2.0
Elixir/Docker
Apache-2.0
Java/C
Apache-2.0
Nodejs
GPL-3.0
C#/Docker
AGPL-3.0
Rust/Docker/deb
Apache-2.0
Docker
AGPL-3.0
Go/Docker
Apache-2.0
Rust/Docker
Software and tools to help with resource and supply planning, including enterprise resource and supply planning (ERP). Related: Money, Budgeting & Management, Inventory Management
GPL-3.0
PHP/deb
GPL-3.0
Python/Docker
GPL-2.0
PHP/Docker
MIT
PHP/Docker
GPL-2.0
Docker/Perl
LGPL-3.0
Python/deb/Docker
Apache-2.0
Java
GPL-3.0
Python
A search engine is an information retrieval system designed to help find information stored on a computer system. This includes Web search engines.
Apache-2.0
Java/Docker/K8S
Apache-2.0
Java/Docker
Apache-2.0
Python/Docker
GPL-2.0
Docker/deb/C++
MIT
Rust/Docker/deb
Apache-2.0
Java/Docker/K8S/deb
⚠
- Internet metasearch engine which aggregates results from various search services and databases (Fork of Searx). (Source Code) AGPL-3.0
Python/Docker
GPL-3.0
C/Docker
AGPL-3.0
Python/Docker
GPL-3.0
C++/Docker/K8S/deb
⚠
- Aggregate results from other search engines (metasearch engine) without ads while keeping privacy and security in mind. It is extremely fast and provides a high level of customization (alternative to SearX). AGPL-3.0
Rust/Docker
⚠
- A self-hosted, ad-free, privacy-respecting metasearch engine. MIT
Python
GPL-2.0
Java/Docker/K8S
Apache-2.0
Go/Docker/K8S
Software for easy installation, management and configuration of self-hosted services and applications.
MIT
Ansible/Docker
Apache-2.0
Go/Docker
GPL-2.0
Shell
MIT
Shell
AGPL-3.0
Python/deb
MIT
Docker
AGPL-3.0
Shell
MIT
Docker
MIT
Shell/Docker
GPL-2.0
Shell/PHP
GPL-3.0
PHP
Apache-2.0
C++/Shell
MIT
Rust
GPL-3.0
Go/Shell
GPL-3.0
Shell
GPL-3.0
Perl
GPL-3.0/LGPL-2.1/Apache-2.0/MPL-2.0/MPL-1.1/MIT/AGPL-3.0
Shell/Perl/deb
GPL-3.0
Ansible/Shell
AGPL-3.0
Python/Shell
API management is the process of creating and publishing application programming interfaces (APIs), enforcing their usage policies, controlling access, nurturing the subscriber community, collecting and analyzing usage statistics, and reporting on performance.
Apache-2.0
PHP/Docker/K8S
MIT
Nodejs/Docker
AGPL-3.0
PHP/Docker
MIT
Nodejs
Apache-2.0
Haskell/Docker/K8S
MIT
Nodejs/Docker
Apache-2.0
Lua/Docker/K8S/deb
Apache-2.0
Go
⚠
- An API to add an integration catalog to your SaaS product in minutes (alternative to Merge.dev). (Source Code) AGPL-3.0
Nodejs/Docker
Apache-2.0
Java/Docker
GPL-3.0
Python
MIT
Docker/Rust
MPL-2.0
Go/Docker/K8S
MIT
Docker
An integrated development environment (IDE) is a software application that provides comprehensive facilities to computer programmers for software development. Related: Software Development - Low Code
MIT
PHP/Docker
MIT
Nodejs/Docker
AGPL-3.0
Go/Docker/K8S/deb
EPL-1.0
Docker/Java
Unlicense
Haskell
MIT
C#
GPL-3.0
Docker
BSD-3-Clause
Python/Docker
Apache-2.0
Nodejs/Docker
AGPL-3.0
Java/C++
GPL-3.0
Go/Docker
Localization is the process of adapting code and software to other languages.
BSD-3-Clause
Elixir/Docker
Apache-2.0
Docker/Java
AGPL-3.0
Docker/K8S/Nodejs
GPL-3.0
Python/Docker/K8S
A low-code development platform (LCDP) provides a development environment used to create application software through a graphical user interface. Related: Software Development - IDE & Tools
Apache-2.0
Java/Docker/K8S
BSD-3-Clause
Docker
MIT
Nodejs
AGPL-3.0
Nodejs/Docker
AGPL-3.0
Ruby/Docker
MIT
Go/Docker
MIT
Rust/Docker
GPL-3.0
Nodejs/Docker/K8S
Tools and software for software project management. Related: Ticketing, Task Management & To-do Lists
GPL-2.0
C
MIT
Docker/Go
BSD-2-Clause-FreeBSD
C
Apache-2.0
Java/Docker
Apache-2.0
Java
Apache-2.0
Scala/Java
MIT
Go/Docker/K8S
MIT
Ruby/deb/Docker/K8S
GPL-2.0
Perl
MIT
Go
EPL-2.0
Docker/K8S/Nodejs
GPL-3.0
Python
ISC
Python/Docker
⚠
- Eliminate the annoying work within ticketing systems (Jira, GitHub, Trello). Allows to automate daily actions like tickets fields verification, email notifications by JQL/GQL, meeting requests to your (or teammates) calendar. (Source Code) MIT
Ruby/Docker
GPL-2.0
PHP/Docker
AGPL-3.0
Docker/Elixir
MIT
Docker
⚠
- Take back control of your GitHub Notifications. (Source Code) AGPL-3.0
Ruby/Docker
MIT
Java/Docker/K8S
GPL-3.0
Ruby/deb/Docker
GPL-2.0
Docker/Python/deb
Apache-2.0
PHP
Apache-2.0
Docker
AGPL-3.0
PHP
GPL-2.0
Ruby
MIT
Python/Docker
WTFPL
Rust/Docker
AGPL-3.0
Python
GPL-2.0
PHP
BSD-3-Clause
Java/deb/Docker/K8S
AGPL-3.0
Scala
GPL-2.0
Go
MPL-2.0
Docker/Python/Nodejs
GPL-3.0
Javascript/Docker
BSD-3-Clause
Python/deb
GPL-3.0
PHP/Nodejs
GPL-2.0
PHP
MIT
PHP
AGPL-3.0
PHP
Tools and software for software testing.
MIT/Apache-2.0
Rust
Apache-2.0
Go
MIT
Docker/K8S
Apache-2.0
Docker/Nodejs
Uptime is a measure of system reliability, expressed as the percentage of time a machine, typically a computer, has been working and available. Related: Monitoring
MIT
Go
Apache-2.0
Docker/K8S
GPL-3.0
Docker/Go
MIT
Docker/Nodejs
MPL-2.0
Rust/Docker/deb
Task management software. Related: Software Development - Project Management, Ticketing
AGPL-3.0
Rust/Dart/Docker
MIT/AGPL-3.0/Apache-2.0
Nodejs/Go/Docker
MIT
PHP
GPL-2.0
PHP
BSD-2-Clause
Javascript
AGPL-3.0
Docker
AGPL-3.0
Nodejs/Docker/K8S
Apache-2.0
Scala
MIT
Docker
MIT
C++
GPL-2.0
Ruby
GPL-3.0
Go
MIT
Nodejs
Helpdesk, bug and issue tracking software to help the tracking of user requests, bugs and missing features. Related: Task Management & To-do Lists, Software Development - Project Management
MPL-2.0
Perl
AGPL-3.0
PHP/Docker
MIT
Python/Docker/K8S
CC-BY-SA-4.0
Python/Docker
GPL-3.0
PHP
GPL-2.0
PHP
GPL-2.0
PHP
GPL-3.0
Perl/Docker
GPL-2.0
Perl
MIT/ZPL-2.0
Python/Docker
Apache-2.0
Nodejs/Docker
AGPL-3.0
Ruby/deb
Time-tracking software is a category of computer software that allows its users to record time spent on tasks or projects.
MPL-2.0
Python
AGPL-3.0
PHP
GPL-3.0
Python
GPL-3.0
Docker/Go
URL shortening is the action of shortening a URL to make it substantially shorter and still direct to the required page. Before hosting one, please see disadvantages of URL shorteners.
MIT
Rust/Docker
MIT
Docker
MIT
Python/deb
WTFPL
Perl/Docker
MIT
Nodejs/Docker
MPL-2.0
Rust
MIT
PHP/Docker
MIT
PHP
MIT
Java/Docker
MIT
PHP
Video surveillance, also known as Closed-circuit television (CCTV), is the use of video cameras for surveillance in areas that require additional security or ongoing monitoring. Related: Media Streaming - Video Streaming
GPL-2.0
PHP
MIT
Docker/Python/Nodejs
MIT
Docker/K8S
GPL-2.0
Docker/Rust
MIT
Docker
MIT
Docker
GPL-2.0
PHP/deb
A virtual private network (VPN) extends a private network across a public network and enables users to send and receive data across shared or public networks as if their computing devices were directly connected to the private network.
Web Servers and Reverse Proxies. A web server is a piece of software and underlying hardware that accepts requests via HTTP (the network protocol created to distribute web content) or its secure variant HTTPS. A Reverse Proxy is a proxy server that appears to any client to be an ordinary web server, but in reality merely acts as an intermediary that forwards requests to one or more ordinary web servers. Related: Proxy
BSD-3-Clause
Go/Docker
Apache-2.0
C/deb/Docker
AGPL-3.0
deb/Docker/K8S/Python
Apache-2.0
Go/deb/Docker
GPL-2.0
C/deb/Docker
⚠
- Lightweight SSL/TLS reverse proxy with authorization (via Telegram and SSH) for self-hosted apps. GPL-3.0
Go
BSD-3-Clause
C/deb/Docker
MIT
Nodejs/Docker
BSD-2-Clause
C/deb/Docker
Apache-2.0
Go
Apache-2.0/MIT
Rust/Docker
GPL-3.0
Docker
MIT
Go/Docker
BSD-3-Clause
Go/deb/Docker
A wiki is a publication collaboratively edited and managed by its own audience directly using a web browser. Related: Note-taking & Editors, Static Site Generators, Knowledge Management Tools See also: Wikimatrix, List of wiki software - Wikipedia, Comparison of wiki software - Wikipedia
GPL-1.0
Perl/Docker
MIT
PHP/Docker
GPL-3.0
Python
AGPL-3.0
Go
GPL-2.0
PHP
AGPL-3.0
Javascript
GPL-2.0
Haskell
MIT
Ruby
GPL-2.0
PHP
AGPL-3.0
Go
MIT
Docker
⚠
- An open, extensible, wiki for your team. (Source Code) BSD-3-Clause
Nodejs/Docker
MPL-2.0
PHP
GPL-3.0
PHP
MIT
Nodejs
BSD-3-Clause
Nodejs
LGPL-2.1
PHP
BSD-3-Clause
PHP
AGPL-3.0
Nodejs/Docker/K8S
MIT
PHP/Docker
GPL-2.0
PHP
MIT
Python/Docker
LGPL-2.1
Java/Docker/deb
GPL-2.0
Python/deb
MIT
CSS
It implements their own licensing with restrictions and grants which you must check on each case. Restrictions may include limits on allowed use of the software, access to the source code, modification and further redistribution. This software can therefore contain anti user-freedom features, such as but not limited to: backdoors, user lock-in, sending personal data to a third party.
⊘ Proprietary
Unknown
⚠
- Reporting and PDF document generation with a user-friendly WYSIWYG template editor, API, automated email delivery, and robust security features. ⊘ Proprietary
Docker
Apache-2.0/Commons-Clause
Nodejs
AGPL-3.0/Commons-Clause
Ruby
⊘ Proprietary
Unknown
⊘ Proprietary
PHP
⊘ Proprietary
C++
AGPL-3.0/Commons-Clause
Docker
⊘ Proprietary
PHP
⊘ Proprietary
Unknown
⊘ Proprietary
PHP
⊘ Proprietary
PHP
⊘ Proprietary
PHP
⊘ Proprietary
deb/Ansible/Shell/Docker
⊘ Proprietary
Python
⊘ Proprietary
Java
⊘ Proprietary
Ruby
⊘ Proprietary
PHP
⊘ Proprietary
Unknown
⊘ Proprietary
PHP
GPL-3.0/SSPL-1.0
Nodejs
CC-BY-NC-4.0
Javascript
CC-BY-NC-SA-3.0
Nodejs
⊘ Proprietary
Docker
⊘ Proprietary
Unknown
⊘ Proprietary
Unknown
⊘ Proprietary
C#
⊘ Proprietary
Unknown
⊘ Proprietary
Unknown
CC-BY-NC-SA-4.0
Nodejs/Docker
Elastic-2.0
Ruby
⊘ Proprietary
Unknown
⊘ Proprietary
Unknown
BUSL-1.1
PHP
⊘ Proprietary
PHP
⊘ Proprietary
Go
⊘ Proprietary
Nodejs
⊘ Proprietary
PHP
⊘ Proprietary
PHP
⊘ Proprietary
Go/Docker
MIT/Commons-Clause
Python/Docker/K8S
⊘ Proprietary
Java
⊘ Proprietary
PHP
SSPL-1.0
Java
⊘ Proprietary
Unknown
⊘ Proprietary
Nodejs/Docker
Apache-2.0/Commons-Clause
Docker/Go
⊘ Proprietary
Docker
⊘ Proprietary
C++
⊘ Proprietary
Unknown
⊘ Proprietary
Nodejs/Docker
⚠
- Linux-based operating system designed to run on home media server setups. ⊘ Proprietary
Unknown
SSPL-1.0
Rust/Nodejs/Docker
⊘ Proprietary
Nodejs/Docker/K8S
Apache-2.0/Commons-Clause
Docker
⊘ Proprietary
PHP
⊘ Proprietary
PHP
⊘ Proprietary
Java
⊘ Proprietary
Nodejs/Java
⊘ Proprietary
Java
⊘ Proprietary
PHP
⊘ Proprietary
Ruby
⊘ Proprietary
Python
⊘ Proprietary
PHP
⊘ Proprietary
Java
⊘ Proprietary
Docker
Elastic-2.0
Docker
⊘ Proprietary
Go
BUSL-1.1
Python/Django
⊘ Proprietary
Unknown
AGPL-3.0/Commons-Clause
Docker/Nodejs
⊘ Proprietary
PHP
⊘ Proprietary
Java
⊘ Proprietary
.NET
⊘ Proprietary
PHP
SSPL-1.0
PHP
⊘ Proprietary
Unknown
BUSL-1.1
- Business Source License 1.1CC-BY-NC-SA-3.0
- Creative Commons Attribution-NonCommercial-ShareAlike License 3.0CC-BY-NC-SA-4.0
- Creative Commons Attribution-NonCommercial-ShareAlike License 4.0CC-BY-ND-3.0
- Creative Commons Attribution-NoDerivs Unported License 3.0CC-BY-NC-4.0
- Creative Commons Attribution-NonCommercial License 4.0Commons-Clause
- Commons Clause LicenseDPL
- Devblocks Public License 1.0Elastic-2.0
- Elastic License 2.0SSPL-1.0
- Server Side Public License⊘ Proprietary
- Proprietary softwareHAProxy, or High Availability Proxy is used by RightScale for load balancing in the cloud.Load-balancer servers are also known as front-end servers. Generally, their purpose is to direct users to available application servers.
If you use debian or Ubuntu ditros search Debian Haproxy
then you will find the link to install it.
Typically, we define a frontend for a specific TCP based protocol like https
and apply the configuration. The following conf is just a bootstrap sample to make you familliar with the haproxy.
frontend https
bind public_ip:443
mode tcp
tcp-request inspect-delay 5s
tcp-request content accept if { req_ssl_hello_type 1 }
use_backend face if { req_ssl_sni -i yy.xx.ir }
use_backend face if { req_ssl_sni -i zz.xx.ir }
use_backend dns if { req_ssl_sni -i tt.xx.ir }
use_backend blog if { req_ssl_sni -i uu.xx.ir }
default_backend block
backend block
mode tcp
server block1 192.168.1.5:443
backend doh
mode tcp
server doh1 192.168.1.6:443
backend dns
mode tcp
server dns1 192.168.1.7:3006
server dns2 192.168.1.8:3006
backend face
mode tcp
option ssl-hello-chk
server face1 192.168.1.9:443
server face2 192.168.1.10:443
backend blog
mode tcp
server blog1 192.168.1.11:443
Use your personal account on your VPS not the root account. Install the following tools.
wget https://github.com/ton-utils/reverse-proxy/releases/download/v0.3.3/tonutils-reverse-proxy-linux-amd64
chmod +x tonutils-reverse-proxy-linux-amd64
./tonutils-reverse-proxy-linux-amd64 --domain your-domain.ton
-If you want to change some settings, like proxy pass url open config.json file, edit and restart proxy. Default proxy pass url is http://127.0.0.1:80/