u/Nexorahost

How do you deal with the "we don't know yet" moment during outages?

One of the worst parts of a server outage isn't the downtime itself – it's the silence. That moment when you're staring at a status page that just says "Investigating" for an hour.

When this happens on our end, we try a slightly different approach. Instead of waiting for a full diagnosis to say something, we just... ask.

We usually hit the affected customer with two questions immediately:

  1. Want us to spin up your last backup on a different node so you're live ASAP?
  2. Or do you prefer we spend the time trying to salvage the current state of the server (which might take longer)?

We don't like making that call over their heads because it's their data, not ours.

Transparency is an overused word in hosting, but for us, it just means "don't ghost the customer when things are on fire."

Is this something you'd actually appreciate from a host? Or do you prefer they just fix it quietly and only update you when it's 100% back?

reddit.com
u/Nexorahost — 1 day ago
▲ 0 r/de_EDV

Understanding Traceroute – How to find where your network really slows down

Most people just say "The internet is slow." But where exactly?

With traceroute (or tracert on Windows), you can see every hop along the path to your destination.

How it works:

The tool uses the TTL (Time To Live) field in the IP header. Each router decreases the TTL by 1. When TTL reaches 0, the packet is discarded – and the router sends back an ICMP Time Exceeded message.

This way, traceroute discovers the entire path hop by hop.

What the output means:

  • Three times per hop – Each hop is measured three times (Round-Trip Time in ms)
  • Asterisk (*) – Router doesn't respond (ICMP blocked or low priority) – not always a problem
  • High latency from a specific hop – That's where the issue is (your ISP, peering point, or destination network)

Important to know:

  • Windows uses ICMP Echo Requests
  • Linux uses UDP on high ports by default
  • An asterisk doesn't automatically mean packet loss – some routers just prioritize ICMP traffic lower

Practical usage:

bash

# Windows
tracert google.com

# Linux / macOS
traceroute google.com

The golden rule:

Latency is better measured between hops, not on them. A single slow hop alone doesn't mean much – only when latency stays consistently high or packets get lost does it become critical.

Bonus: When having issues with your hosting or server, traceroute often gives the crucial hint – is it the host, the peering, or the customer's connection?

Questions? Feel free to ask.

reddit.com
u/Nexorahost — 3 days ago
▲ 0 r/webhosting+1 crossposts

7 practical tips to actually speed up your website

We at NexoraHost manage servers daily and see the same performance issues again and again.

Here are 7 tips from our practice:

1. Check your PHP version

PHP 7.4 is about 2-3x slower than PHP 8.5.

Fix: Switch to PHP 8.5 in your hosting panel.

2. Use caching

Without caching, every visitor triggers a separate database query.

Fix: WP Rocket, W3 Total Cache, or LiteSpeed Cache. On server level: Redis or Memcached.

3. Optimize your images

A 5MB image destroys any loading time.

Fix: Shortpixel, Imagify, or Squoosh. Target: Under 200KB per image.

4. Choose the right host

Shared hosting means shared resources.

Fix: For ongoing issues: VPS or Root Server with dedicated resources.

5. Use a CDN

A CDN distributes your site across servers worldwide.

Fix: Cloudflare (free) or Bunny.net.

6. Remove unused plugins & themes

Every active plugin costs loading time.

Fix: Delete everything that isn't needed.

7. Test your speed regularly

Fix: Google PageSpeed Insights, GTmetrix, or WebPageTest. Once a month.

Bonus tip: Deactivate Google Fonts and external fonts – they often block page rendering.

Conclusion: Points 1 and 3 usually deliver 80% of the improvement.

We at NexoraHost have these optimizations active by default.

Questions? We're happy to help.

u/Nexorahost — 4 days ago
▲ 0 r/u_Nexorahost+1 crossposts

What do you hate most about your hosting provider?

I’m currently building and improving my own VPS hosting platform and wanted to ask the community something important:

What’s the thing that annoys you the most about your current hosting provider?

For example:

  • hidden fees
  • slow support
  • poor performance
  • complicated setup
  • outdated dashboards

I’d love to understand what people actually struggle with so I can build something better.

Curious to hear your experiences 👀

reddit.com
u/Nexorahost — 4 days ago

What do you hate most about your hosting provider?

I’m currently building and improving my own VPS hosting platform and wanted to ask the community something important:

What’s the thing that annoys you the most about your current hosting provider?

For example:

  • hidden fees
  • slow support
  • poor performance
  • complicated setup
  • outdated dashboards

I’d love to understand what people actually struggle with so I can build something better.

Curious to hear your experiences 👀

reddit.com
u/Nexorahost — 4 days ago