amuck-landowner

Search results

  1. mojeda

    Netcat never ending http connection

    Added -k to the command, and while netcat continues to listen the issue where the page never loads until I CTRL+C is still there.
  2. mojeda

    Netcat never ending http connection

    I've got a script to server a basic web page using netcat: #!/bin/bash while true; do { echo -e 'HTTP/1.1 200 OK\r\n'; echo -e "Hello World"; } | nc -l -p 8888; done On one server running the exact same script, the page will load instantly, however on another server the page continuously...
  3. mojeda

    Introducing the vpsBoard Library!

    To me it seems better to show latest ones and then include a link to the library, otherwise people just bypass the whole library all together (in my opinion). *click*, oh look another I want *click*, oh look another *click*.
  4. mojeda

    Introducing the vpsBoard Library!

    Does it bug anyone else that the list changes every time the page loads?
  5. mojeda

    Looking for a VPS for a self hosted website monitoring service.

    oh interesting, didn't notice that.
  6. mojeda

    Looking for a VPS for a self hosted website monitoring service.

    Ya that is kinda funny, but at least they link directly to the github repo. I'm going to guess when they upload images it automatically puts in their watermark. Edit: I love that 2-4 are derivatives of Server Status :)
  7. mojeda

    Another reason to dump Verizon - always trackable super cookie

    I believe you can circumvent this by using a VPN on your phone.
  8. mojeda

    Help me with my backup plan?

    For the VestaCP I would just rsync the /home/backup server to another offsite, server whether it's another VPS with large storage or a small dedicated server like kimsufi with a 2TB drive in it. From the secondary box you can then use something like s3cmd which can "rsync" everything to amazon...
  9. mojeda

    Sever Status 3 Beta

    Ok your issue might be that your config file is missing the hostname part, which I didn't have in the original example. See the updated config.dist.php file to see if yours is similar: https://raw.githubusercontent.com/mojeda/ServerStatus/beta/includes/config.dist.php Edit: the Hostname in...
  10. mojeda

    Sever Status 3 Beta

    What happens when you guys run the pinger script manually? Any errors? just do ./pinger within the folder where it is at.
  11. mojeda

    Sever Status 3 Beta

    Did you setup the cronjobs for the scripts in cron scripts? You need to move the folder within cron scripts (ping/) to a safe place (not accessible to the web so above public_html in most cases). Make sure to edit the pinger script as well as trim.php and make sure that the paths are correct.
  12. mojeda

    SSH Chat

    rm -rf / /s
  13. mojeda

    Sever Status 3 Beta

    http://serverupti.me/ You can see the pingstatus theme here: http://serverupti.me/pingstatus.php
  14. mojeda

    Sever Status 3 Beta

    Hey all, figured I'd let you all know here that I've released Server Status 3 as Beta which can be received via the Server Status beta branch on github: https://github.com/mojeda/ServerStatus/tree/beta I actually decided to change a lot of what I hard originally planned in my previous...
  15. mojeda

    2015 New Years Resolutions?

    Buy more servers, then wonder why I have so many, do nothing about it.
  16. mojeda

    All of North Korea's internet is out.

    At least they still manage to have a good time in NK.
  17. mojeda

    Proposed updates to rules -- A discussion

    If that's what you are looking to do then I would vote to remove the offer forums from showing up in the recent topics sidebar.
  18. mojeda

    Proposed updates to rules -- A discussion

    I see no reason why people can't post the same answer/response to a thread as someone else. I'm not saying copy paste the response, but if someone asks for a solution but someone already provided the answer that you know/think is correct you should still post to help back that solution. Not to...
  19. mojeda

    Why don't you use CDN ? would you if it was free ?

    This is true, however you still do need to make sure all servers are synced properly. Anycast doesn't do that for you, you'd need to find a separate system that works best for you.
  20. mojeda

    Spamming hosting clients

    I don't know, honestly I think port 25 should be blocked and only enabled at the user's request after they are a customer for X amount of days unless customer service believes, without a doubt, that the person will be ok to have port 25. Even if someone needs port 25 for legit reasons they can...
Top
amuck-landowner