• Routed IPv4 Subnets for VPS: When You Need /29, /28 or /27 (and How to Order One)

    Most VPS users get one IPv4 address with their plan and never think about it again. But the moment you start hosting multiple SSL sites without SNI, running a mail server with proper per-domain reputation, building a small VPN provider, or separating tenants on a single box, that single IP becomes a hard wall. This guide explains when you actually need extra IPv4, how to choose between a single address and a routed /29, /28 or /27 subnet, and how to order and configure one on a TinyServers NVMe VPS.

    Why one IPv4 is sometimes not enough

    Here are the real-world scenarios where customers reach out for additional addresses:

    • Mail server with multiple domains. SMTP reputation is tied to the sending IP. Mixing transactional and marketing mail on a single address means one bad campaign can poison delivery for everything else. A small subnet lets you bind each domain or each traffic class to its own IP and PTR record.
    • Multiple SSL sites for legacy clients. SNI covers the modern web, but if you have to support old TLS clients, IoT devices, or some payment gateways, every certificate still needs its own IPv4.
    • VPN exit nodes. WireGuard and OpenVPN endpoints, especially commercial or per-user exits, benefit from distinct public IPs to avoid CGNAT-like blacklisting and to give each tenant a clean address.
    • Multi-tenant hosting and reverse proxies. Agencies running many small sites on one VPS often want to give each customer a dedicated public IP for billing, isolation, or to allow customers to point their own DNS without coordinating.
    • Outbound proxy or scraping pools. Rotating across a /28 or /27 spreads request volume and reduces rate-limit collisions.
    • NAT and lab segmentation. Routed subnets give you a clean L3 block to NAT internal containers or LXC guests behind, with no bridging tricks.

    If none of those describe you, a single extra IPv4 at €1.00/month is almost always the right starting point. If two or more apply, a routed subnet is cheaper per address and far easier to manage long-term.

    Single IPv4 vs routed subnet — what changes

    A single extra IPv4 is added to your existing VPS interface as an alias. From the OS side it looks like:

    ip addr add 203.0.113.45/32 dev eth0

    It works for SMTP, extra HTTPS vhosts, or a second VPN endpoint, but it is not a network you can subdivide.

    A routed subnet is different. The provider routes the entire block (a /29, /28, or /27) to your VPS as the next hop. You receive the subnet on a separate interface or as additional addresses, and you control the inside however you want — bind addresses to services, assign them to LXC/Docker containers, NAT internal networks behind them, or build a small lab network. There is no MAC-layer dependency, no bridging, no provider ARP magic. The traffic for any address in the block lands on your VPS because the upstream routes it there.

    The practical implication: a routed subnet behaves like a real network you own, not like a list of aliases. That is exactly what you need for containers, NAT, or per-tenant isolation.

    The decision table: /29 vs /28 vs /27

    All three TinyServers routed subnets are billed monthly with no setup fee. Here is how they compare on cost-per-usable-IP:

    Product Monthly price Usable IPs Cost per IP Best fit
    Routed /29 €8.90 6 €1.48 Entry subnet — small NAT, light multi-tenant, per-domain mail
    Routed /28 €14.90 14 €1.06 Agencies, mid-size multi-tenant layouts, mixed VPN+web
    Routed /27 €26.90 30 €0.90 Validated use case where /28 is too tight — proxy pools, larger VPN providers

    Three rules of thumb:

    1. Start with /29 unless you have a written list of 6+ addresses you will use in month one. Most customers who jump straight to /28 underuse it for the first quarter.
    2. If you are between /28 and /27, take the /28 and grow. Upgrading later is straightforward; over-provisioning IPv4 is expensive and increasingly frowned upon by RIRs.
    3. If you genuinely need /26 or larger, contact us directly. Anything above /27 is reviewed case-by-case and is not orderable from the cart.

    Configuring a routed /29 on a Linux VPS

    Once the subnet is provisioned, you will receive the block (for example 203.0.113.40/29) and the gateway your VPS already uses. There is no separate gateway for the routed block — your VPS itself is the gateway for that subnet.

    The fastest, distribution-agnostic way to bring addresses up is the ip command — it works identically on Debian, Ubuntu, Rocky and Alma:

    # add the addresses you want to use
    ip addr add 203.0.113.41/29 dev eth0
    ip addr add 203.0.113.42/29 dev eth0
    ip addr add 203.0.113.43/29 dev eth0

    You only need to add the addresses you actually plan to bind to services — the rest of the block is still routed to your VPS and you can add them later without downtime.

    These commands are not persistent across reboots. To make the configuration survive a restart, write it into the network manager your distribution uses by default:

    • Ubuntu 24.04 — add the extra addresses under ethernets.eth0.addresses in /etc/netplan/*.yaml, then run netplan apply.
    • Debian 12 — add an up ip addr add ... line for each address under the iface eth0 stanza in /etc/network/interfaces.
    • Rocky 9 / Alma 9 — use nmcli connection modify <conn> +ipv4.addresses 203.0.113.41/29 (repeat per address), then nmcli connection up <conn>.

    In all cases the addresses behave the same once they are up — the choice is purely about how your distribution stores network state.

    Quick sanity test from another machine:

    for ip in 41 42 43; do ping -c1 -W1 203.0.113.$ip; done

    Bind a service to a specific IP — for example, an extra Nginx vhost:

    server {
        listen 203.0.113.42:443 ssl;
        server_name client-a.example.com;
        ssl_certificate     /etc/letsencrypt/live/client-a.example.com/fullchain.pem;
        ssl_certificate_key /etc/letsencrypt/live/client-a.example.com/privkey.pem;
        # ...
    }

    Per-IP rDNS is available on request — open a ticket with the IP and the desired PTR. This is essential for mail servers; without correct PTR, most receivers will defer or reject your messages.

    Three real customer patterns

    1. Small mail host on a 4 GB VPS

    A consultancy hosts mail for six client domains on TSM4NVME40. They added a /29 and assigned one IP per domain, with matching PTR records. Result: deliverability issues from one client’s newsletter no longer affect the other five. Total cost: €5.46 + €8.90 = €14.36/month for six independently reputable mail IPs.

    2. Agency hosting 12 small WordPress sites

    A web agency runs a dozen low-traffic sites on a single 2 GB VPS. They took a /28 so each customer gets a dedicated public IP — useful for legacy DNS setups customers manage themselves and for billing transparency. Cost per customer for the IP: roughly €1/month, baked into the hosting fee.

    3. WireGuard VPN provider, beta phase

    A small VPN startup runs WireGuard on a 4 vCPU VPS and rotates exits across a /28. When they outgrew it (week three), they upgraded to a /27. Lesson learned: they should have started with a /29 to validate the model and then jumped to /27 directly.

    What we do not allow

    Routed subnets are reviewed manually before allocation. Use cases that will be rejected:

    • Bulk unsolicited email or anything resembling cold-mail at scale
    • Open proxies or open resolvers exposed to the public internet
    • Address hoarding — ordering a /27 with no concrete plan to use the IPs
    • Reselling individual IPv4 addresses as a standalone product

    If your project is sensitive to abuse complaints (large-scale crawling, marketing email, anonymization services), tell us upfront. We would rather have an honest conversation than reclaim addresses later.

    How to order

    1. Make sure you have an active TinyServers VPS. Routed subnets are not standalone products — they require a VPS as the routing target.
    2. Open the IPv4 add-ons category and add the subnet size you need to your cart.
    3. Complete the order. The first allocation requires manual review. Once approved, we will email you the block, confirm the gateway your VPS already uses, and handle any rDNS requests you send in.
    4. Configure the block on your VPS using the ip commands above (and the persistent equivalent for your distribution) and start binding services.

    If you are unsure which size fits, the safe answer is almost always start with /29. The €6 difference per month between /29 and /28 is much smaller than the cost of unused address space sitting idle for six months.

    FAQ

    Can I upgrade from /29 to /28 later?

    Yes. The new block is routed alongside the old one — you keep using the /29 addresses while you migrate services, then we deprovision the smaller block when you are ready. No forced renumbering.

    Do I get the addresses immediately?

    Provisioning is manual to keep abuse rates low. Once your order is approved, the block is routed within minutes and you can configure it on your VPS.

    Do I need a TinyServers VPS to order?

    Yes. Routed subnets are add-ons for existing VPS plans — they have to terminate somewhere, and we route them to a VPS in your account. If you do not have one yet, start with a small NVMe plan from €2.48/month and add the subnet on top.

    Can I use the addresses on a non-TinyServers server?

    No. Routed blocks are tied to a TinyServers VPS as the next hop. We cannot announce them to a third-party network from the storefront product — that requires a separate BGP arrangement.

    What about /26 or larger?

    Available, but not from the cart. Contact us with your use case and projected utilization timeline.

    Summary

    Extra IPv4 is one of those line items that looks small but quietly unblocks entire classes of projects — proper mail hosting, multi-tenant agency setups, VPN services, container labs. If you only need one or two extra addresses, the single IPv4 add-on is the right call. If you need a real network you can subdivide, start with a /29, grow into a /28, and only step up to a /27 once you have validated the use case.

    Pair any of them with one of our NVMe VPS plans in Romania and you have a clean, low-cost foundation for projects that have outgrown a single public IP.

  • WordPress VPS Romania: Setup, Sizing, and Performance Checklist

    WordPress VPS Romania: Setup, Sizing, and Performance Checklist

    Running WordPress on a VPS gives you control, but sizing and tuning mistakes can quickly hurt speed and uptime. This guide covers a practical setup baseline for Romania-hosted NVMe VPS instances.

    Recommended starting point

    For most production WordPress sites, start at 2 GB RAM with NVMe storage. This leaves headroom for plugins, caching, updates, and traffic bursts.

    Secure baseline stack

    • Nginx + PHP-FPM with conservative worker settings.
    • MariaDB tuned for realistic memory limits.
    • TLS via certbot and strict firewall rules.
    • Backups and restore testing, not backups only.

    Performance checklist

    • Enable page/object caching where appropriate.
    • Audit plugins and remove non-essential add-ons.
    • Track RAM usage and swap behavior after plugin updates.
    • Run regular DB optimization and slow query checks.

    When to scale up

    • Admin panel feels slow during normal activity.
    • RAM stays high during routine traffic.
    • Background jobs compete with front-end response time.

    If these persist after tuning, move to 4 GB and re-test.

    Upgrade options

    Related articles

    FAQ

    Is 1 GB enough for WordPress?

    Only for very light sites. For most production use cases, 2 GB is more reliable.

    How often should I review performance?

    Weekly for active websites and after every major plugin or theme change.

    What matters most for WordPress speed?

    Balanced RAM headroom, NVMe storage, clean plugin set, and cache discipline.

    Related buying guides

  • Cheap VPS Romania: How to Choose an NVMe Plan Without Overpaying

    Cheap VPS Romania: How to Choose an NVMe Plan Without Overpaying

    Budget VPS plans can be excellent if you choose based on workload, not only monthly price. This guide helps you select a cheap NVMe VPS in Romania while keeping enough headroom for real traffic.

    What to evaluate before price

    • Storage type: NVMe changes responsiveness for app and database workloads.
    • CPU generation and contention risk under peak usage.
    • Local latency for your user base.
    • Clear, simple upgrade path when demand increases.

    Common low-cost mistakes

    • Buying minimum RAM for production WordPress.
    • Ignoring background jobs and cron impact.
    • No monitoring, then upgrading only after incidents.
    • Over-buying from day one without validated demand.

    Plan sizing pattern that works

    Start with 1 GB only for lean and predictable workloads. Use 2 GB as default for most production web apps. Move to 4 GB when real monitoring data confirms sustained pressure.

    Validation checklist before launch

    free -m
    vmstat 1 5
    iostat -x 1 3
    curl -I https://your-domain
    
    • Keep RAM below saturation during normal traffic.
    • Watch swap behavior during updates and backup windows.
    • Validate response time from user-relevant regions.

    Related guides

    FAQ

    What is the best cheap VPS plan for starting a project?

    For many production workloads, 2 GB is the safest start. Use 1 GB only when the stack is intentionally minimal.

    Is NVMe worth it on budget plans?

    Yes. NVMe improves I/O-heavy tasks like package installs, cache warmups, and database operations.

    How do I avoid overpaying?

    Start with measured requirements, monitor usage weekly, and scale only when metrics confirm sustained pressure.

    Related comparison guides

  • 1 GB vs 2 GB vs 4 GB VPS: Which Plan Fits Your Workload?

    1 GB vs 2 GB vs 4 GB VPS: Which Plan Fits Your Workload?

    Choosing the right VPS size is one of the biggest decisions for cost and stability. This guide compares 1 GB, 2 GB and 4 GB NVMe VPS plans using practical workloads instead of generic specs.

    Quick decision table

    Plan Best for Main risk Upgrade signal
    1 GB RAM VPN, static sites, tiny APIs Low memory headroom Frequent swap or RAM over 85 percent
    2 GB RAM WordPress, small production apps Worker contention at peaks Queue lag, plugin-heavy workloads
    4 GB RAM Higher concurrency, multi-service stacks Higher monthly cost Needed when 2 GB stays saturated

    1 GB VPS profile

    A 1 GB plan is ideal when you keep the stack lean and predictable. It works best for low-traffic services and utility workloads.

    2 GB VPS profile

    For most small production apps, 2 GB is the safest default. You get enough memory for caching, moderate concurrency, and cleaner deployments.

    4 GB VPS profile

    Move to 4 GB when your project is already proven and bottlenecks are recurrent, not occasional.

    How to decide in 10 minutes

    1. List always-on services and estimated peak memory.
    2. Check expected concurrency and background jobs.
    3. Start one tier higher if your business cannot tolerate slowdowns during spikes.

    Benchmark reference

    Before buying, check real measurements from the same infrastructure: NVMe VPS Romania benchmarks.

    FAQ

    Is 1 GB enough for production?

    Yes for lean workloads. For plugin-heavy WordPress or multi-service setups, 2 GB is usually safer.

    When should I jump from 2 GB to 4 GB?

    When monitoring shows sustained high RAM usage, queue lag, or repeated swap under normal traffic.

    Which plan gives best price-performance?

    For many small production projects, 2 GB offers the strongest balance between cost and stability.

    More decision guides

  • Is a 2 GB VPS Enough? Best Use Cases, Performance and When to Choose 4 GB

    Is a 2 GB VPS Enough? Best Use Cases, Performance and When to Choose 4 GB

    A 2 GB VPS is often the best balance between price and usable performance for small production workloads. It gives you more headroom than a 1 GB VPS, while still keeping monthly costs low. For many websites, lightweight applications and small business services, 2 GB RAM is a practical starting point.

    If you need a VPS for a small WordPress site, a control panel, a few light services or a development stack that should feel stable under normal use, 2 GB RAM is usually the safer choice. It is a better fit than 1 GB when the server is not just for testing, but for something that people actually rely on.

    Good use cases for a 2 GB VPS

    A 2 GB VPS is a strong fit for:

    • small to medium WordPress websites
    • websites with moderate traffic
    • development and staging environments
    • bots, automation and API services
    • small control panel installs
    • lightweight Docker setups
    • VPN, proxy or monitoring servers with extra headroom

    Compared to 1 GB RAM, a 2 GB VPS is more forgiving. You have more space for the operating system, background services and traffic spikes without hitting memory limits as quickly.

    When 2 GB RAM is enough

    A 2 GB VPS is usually enough when:

    • you run one main website or application
    • your traffic is still moderate
    • your plugins or services are not heavy
    • you want a stable small production environment
    • you need room for growth without jumping straight to a larger plan

    For many users, this is the point where a VPS stops feeling entry-level and starts feeling practical for real workloads.

    When you should choose 4 GB instead

    You should usually start with 4 GB RAM if you plan to run:

    • multiple active websites
    • heavier WordPress installs
    • larger databases
    • several Docker containers
    • memory-hungry control panels
    • busier ecommerce or client projects

    If you already know the workload is commercial, heavier or expected to grow soon, 4 GB will give you more margin and reduce the need for an early upgrade.

    2 GB VPS vs 1 GB VPS

    Choose a 1 GB VPS if:

    • you want the lowest cost
    • the project is small
    • you are testing, learning or running a single lightweight service

    Choose a 2 GB VPS if:

    • the server matters for real users
    • you want better stability
    • you need more room for plugins, services or background tasks
    • you want a better balance between cost and performance

    For most small production workloads, 2 GB RAM is the more practical default.

    2 GB VPS vs 4 GB VPS

    Choose 2 GB RAM if:

    • you need a budget-friendly production VPS
    • you run one main service
    • the workload is still relatively light
    • you want a safe upgrade from 1 GB

    Choose 4 GB RAM if:

    • you run multiple services
    • you need more performance margin
    • you want to reduce upgrade pressure
    • your workload is already business-critical

    How to choose the right plan

    If you are choosing between 1 GB, 2 GB and 4 GB, think in terms of risk:

    • 1 GB is best for lightweight and non-critical workloads
    • 2 GB is best for small production use
    • 4 GB is best when stability, growth and flexibility matter more

    For many users, 2 GB VPS is the sweet spot because it keeps costs reasonable while giving enough RAM for a much wider range of real use cases.

    Need help choosing?

    A 2 GB VPS is often the right starting point if you want something affordable but usable for real traffic and daily workloads. If the project is very small, 1 GB may still be enough. If you already expect higher load or multiple services, start with 4 GB.

    View available plans here:

    Quick FAQ

    Is 2 GB RAM enough for WordPress?

    Yes. For many small to medium WordPress websites, 2 GB RAM is a solid starting point, especially with caching and a lightweight setup.

    Can I run a control panel on a 2 GB VPS?

    Yes, for lighter setups. If you expect multiple hosted sites or heavier usage, more RAM may be needed.

    Is 2 GB VPS enough for Docker?

    Yes, for small Docker workloads. For several containers or memory-heavy services, 4 GB is safer.

    Should I choose 2 GB or 4 GB?

    Choose 2 GB for small production workloads and 4 GB when you expect heavier usage, more services or faster growth.

    Need a VPS that is still affordable but strong enough for real workloads? A 2 GB NVMe VPS is often the best place to start.

  • What Can You Run on a 1 GB VPS? Best Use Cases, Limits and When to Upgrade

    What Can You Run on a 1 GB VPS? Best Use Cases, Limits and When to Upgrade

    A 1 GB VPS is a good entry-level choice for lightweight workloads, testing, small personal projects and services that do not need much memory. If you choose fast NVMe storage and a modern CPU, a small VPS can feel responsive for the right use case. The key is to know where 1 GB RAM is enough and where it becomes a bottleneck.

    If you want a low-cost VPS for a simple website, a VPN, a small bot or a lightweight Linux environment, 1 GB RAM can be enough. If you expect traffic growth, heavier control panels or multiple services running at the same time, you should usually start from 2 GB RAM.

    Good use cases for a 1 GB VPS

    A 1 GB VPS is usually a good fit for:

    • small static websites
    • lightweight WordPress installs with caching
    • personal VPN servers
    • Discord bots, Telegram bots or simple automation
    • development and testing environments
    • small monitoring or proxy services
    • Linux learning environments

    For these workloads, the main advantages are low monthly cost, fast deployment and enough dedicated resources to run a small project reliably.

    Where a 1 GB VPS starts to struggle

    A 1 GB VPS is not the best choice if you want to run:

    • larger WordPress sites with many plugins
    • busy ecommerce websites
    • Docker stacks with several containers
    • game servers with active usage
    • control panels that consume a lot of RAM
    • databases under constant load

    In these cases, limited memory becomes the main problem. The server may start swapping, response times may increase and the experience becomes inconsistent under load.

    1 GB VPS vs 2 GB VPS

    If you are unsure what to choose, the practical comparison is simple.

    A 1 GB VPS is better for:

    • low-budget projects
    • testing
    • simple websites
    • single-purpose services

    A 2 GB VPS is better for:

    • small production websites
    • WordPress with more plugins
    • small business services
    • room for traffic growth
    • more stable multitasking

    If the VPS will be used for anything client-facing or revenue-related, 2 GB RAM is usually the safer starting point.

    How to choose the right plan

    Choose 1 GB RAM if:

    • your workload is light
    • you want the lowest monthly cost
    • you are testing or learning
    • one service is the main priority

    Choose 2 GB RAM if:

    • you want more headroom
    • the site or app matters for your business
    • you expect growth
    • you want fewer performance limits

    Choose 4 GB RAM if:

    • you plan to run multiple services
    • you need a heavier stack
    • you want more room for scaling without immediate upgrades

    Need help choosing?

    If you are not sure whether 1 GB, 2 GB or 4 GB RAM is right for your workload, the safest approach is to match the VPS to your actual use case, not just the lowest price. A small website, bot or VPN can run well on 1 GB. For production workloads, 2 GB is often the better balance.

    View available plans here:

    Quick FAQ

    Is 1 GB RAM enough for WordPress?

    Yes, for a small WordPress site with caching and a light theme. For heavier plugins or more traffic, 2 GB RAM is safer.

    Can I run Docker on a 1 GB VPS?

    Yes, but only for very small containers and simple setups. For multi-container workloads, 2 GB or 4 GB is a better choice.

    Is a 1 GB VPS good for a VPN?

    Yes. A small VPN server is one of the most suitable use cases for a 1 GB VPS.

    When should I upgrade from 1 GB to 2 GB?

    Upgrade when memory usage stays high, performance becomes inconsistent, or you start running more than one important service.

    Need a low-cost NVMe VPS in Romania? Start with a 1 GB VPS for lightweight workloads or choose 2 GB RAM for more headroom and stability.

  • NVMe VPS Romania Benchmarks and Speed Tests (Sep 2025)

    NVMe VPS Romania Benchmarks and Speed Tests (Sep 2025)

    Last updated: 01 Mar 2026
    Location: Bucharest, Romania
    Host platform: AMD Ryzen 5700G nodes with NVMe storage
    Network port: up to 1 Gbps

    This page is the benchmark hub for TinyServers NVMe VPS plans in Romania. The goal is simple: publish reproducible performance data, explain what those numbers mean in practice, and map each workload to the right VPS size.

    Benchmark methodology

    • Fresh VPS deployment before each test cycle.
    • No custom kernel tuning unless explicitly stated.
    • Each network and disk test run multiple times, median reported.
    • Tools used: speedtest, fio, and standard Linux monitoring commands.
    • Tests executed at comparable times to reduce peak-hour variance.

    How to reproduce locally

    sudo apt update && sudo apt install -y speedtest-cli fio
    speedtest
    fio --name=randread --ioengine=libaio --rw=randread --bs=4k --size=1G --numjobs=1 --iodepth=32 --direct=1
    

    If you run your own tests, use at least three runs and compare medians, not single spikes.

    Recent network snapshots

    Month Download Upload Latency Plan
    Sep 2025 384 Mbps 450 Mbps 2.1 ms TSM1NVME10
    Aug 2025 443 Mbps 379 Mbps 8.4 ms TSM1NVME10

    Network throughput changes by destination, peering, and time of day. Use these values as realistic references, not fixed guarantees.

    How to interpret benchmark numbers

    CPU

    For web applications, CPU matters most during concurrent dynamic requests, compression, and background processing. If response times degrade under moderate concurrency, move to a plan with more vCPU headroom.

    Disk I/O (NVMe)

    Fast disk I/O improves package updates, database operations, cache warmup, and deployment time. For CMS and API workloads, strong NVMe performance is often the difference between smooth and inconsistent behavior under spikes.

    Network

    Low latency to local users improves page responsiveness and API round-trip times. Throughput is more visible during file transfer, media delivery, and backup windows.

    Workload mapping by plan size

    • 1 GB RAM: VPN, static sites, lightweight API endpoints, low-traffic tools.
    • 2 GB RAM: WordPress with plugins, small production APIs, app + database combinations.
    • 4 GB RAM: higher concurrency, more workers, larger caches, multiple always-on services.

    For most new production projects, 2 GB is the safest starting point because it avoids early memory bottlenecks while keeping cost low.

    Detailed benchmark articles

    Choose your VPS plan

    Benchmark update policy

    • New measurements are added after major infrastructure or routing changes.
    • When a metric changes significantly, methodology notes are updated on this page.
    • Older data points remain visible for historical comparison.

    Quick FAQ

    Are benchmarks enough to choose a VPS?

    They are a strong starting point, but real usage profile matters more than a single synthetic score.

    Why can my speedtest differ from published results?

    Route selection, test endpoint, and time of day can change throughput and latency.

    What is the safest default for new production projects?

    Most teams should start with 2 GB NVMe and scale up when monitoring shows sustained pressure.

    How benchmarks map to real workloads

    Workload type Main bottleneck Metric to watch first
    CMS websites Memory and database I/O RAM pressure + disk latency
    API backends CPU concurrency Response time under parallel load
    Backup and transfer jobs Network throughput Upload/download consistency

    Benchmark caveats and good practice

    • Single speedtest results can be misleading; use medians and multiple endpoints.
    • Do not compare different providers without normalizing region and test method.
    • Measure during your own peak business window, not only off-peak hours.
    • Validate synthetic benchmarks with application-level metrics.

    Decision matrix for fast plan selection

    • Choose 1 GB when budget is strict and workload is simple.
    • Choose 2 GB for production WordPress, APIs, and mixed app stacks.
    • Choose 4 GB when you need higher concurrency and wider safety margins.

    Need migration help while scaling? Follow the zero-downtime migration guide: How to migrate to TinyServers NVMe VPS.

    Commercial Intent Guides

  • Free VPS Backup from the TinyServers Control Panel

    Free VPS Backup from the TinyServers Control Panel

    Few things hurt more than losing your data. Whether you run a thriving online store or a side-project server you’ve been hacking on for weeks, unexpected downtime can cost time, money, and reputation. That’s why we’ve launched free snapshot backups for every Tinyservers VPS – and the process is so simple you can start (or cancel!) it with just a couple of clicks in the web interface.

    Screenshot from 2025 08 06 16 27 50

    (more…)

  • Migrate a 20i VPS to TinyServers NVMe with Zero Downtime

    Migrate a 20i VPS to TinyServers NVMe with Zero Downtime

    Tiny tip: 20i charges £13.99 / mo for its entry NVMe VPS (1 vCPU · 1 GB RAM · 25 GB SSD) – but you can run the same workload on a TinyServers TSM1NVME10 for just €2.49 / mo. Follow this checklist to migrate without downtime or DNS chaos.

    (more…)

  • Install WordPress on a 3 EUR NVMe VPS in 15 Minutes

    Install WordPress on a 3 EUR NVMe VPS in 15 Minutes

    Looking for an ultra-affordable NVMe VPS to power a fresh WordPress site? In this step-by-step tutorial you’ll deploy WordPress on the TSVM1NVME10 plan (1 vCPU • 1 GB RAM • 10 GB NVMe • €3.29/mo) in under 15 minutes.

    (more…)