• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Who sells web hosting here?

paperfist

Diamond Member
I remember eons ago that someone from here had their own hosting service. I saw the subject come up again recently, but I can't seem to find it.

If someone could point me in the right direction I'd appreciate it 🙂 Or if you know of a good VPS host I'm all eyes 🙂
 
ViviTheMage has Mad Genius. I've been using it for a little over a year for shared hosting and it's worked well. A few times it's been down for a couple of hours, and it's clearly a small, one or two person operation, but overall for the price, no complaints at all.

Promo code for ATOTers: AT30-vivi

https://madgenius.com/
 
I use Digital Ocean droplets but unless you simply want WordPress or other existing out-of-the-box image, then you need to know how to setup your own servers. Depends what your needs are and your level of knowledge.
 
ViviTheMage has Mad Genius. I've been using it for a little over a year for shared hosting and it's worked well. A few times it's been down for a couple of hours, and it's clearly a small, one or two person operation, but overall for the price, no complaints at all.

Promo code for ATOTers: AT30-vivi

https://madgenius.com/

Thanks! My ‘commercial’ host is down a lot more than that and lately they take several days to answer tickets.

Amazon Lightsail might work for you if you don't mind a low level of support. A server with a bare-bones LAMP stack starts at $3.50/month.

Hmm I’m not sure which Amazon I signed up for but it’s using 2 RDS instance databases and it’s already billing out over $90 for about 4 days of use. I understand you can run a script on it to shut it if when not in use, but that’s a bit above my technical grasp.

I use Digital Ocean droplets but unless you simply want WordPress or other existing out-of-the-box image, then you need to know how to setup your own servers. Depends what your needs are and your level of knowledge.

I checked them out a few days ago and really they had insanely low pricing for decent specs. But I’m looking for a Windows VPS and they don’t offer that out of the box. I saw some YouTube videos on how to run Windows in their server, but I haven’t looked into it yet.
 
Last edited:
ViviTheMage has Mad Genius. I've been using it for a little over a year for shared hosting and it's worked well. A few times it's been down for a couple of hours, and it's clearly a small, one or two person operation, but overall for the price, no complaints at all.

Promo code for ATOTers: AT30-vivi

https://madgenius.com/

Man, I completely forgot that I had my resume hosted with them for a couple year back in college.
 
...
Hmm I’m not sure which Amazon I signed up for but it’s using 2 RDS instance databases and it’s already billing out over $90 for about 4 days of use. I understand you can run a script on it to shut it if when not in use, but that’s a bit above my technical grasp...

Does your load require RDS? You might be fine with just running mysql on your own ec2 instance. Or using a platform that doesn't require a database and just hosting the site on s3. (Great for blogs). My job pretty much is designing cloud based solutions, if you can give detail of what you are running and what it's use rate is, I can probably help you design a cost effective solution. I may even write the terraform/cloudformation for it.
 
Does your load require RDS? You might be fine with just running mysql on your own ec2 instance. Or using a platform that doesn't require a database and just hosting the site on s3. (Great for blogs). My job pretty much is designing cloud based solutions, if you can give detail of what you are running and what it's use rate is, I can probably help you design a cost effective solution. I may even write the terraform/cloudformation for it.

Right, if you're just looking for a basic low-traffic website setup you can run everything on the server instance itself, and with Lightsail it should be just the $3.50-and-up a month instead of hourly billing. At some level ($10?) you can also pick a prebuilt server with a basic version of Plesk if you don't want the bare LAMP stack plus whatever you install manually.

Note: I haven't gotten around to trying this myself I've just been reading the docs. We use AWS at work but it's several more high-end setups.
 
ViviTheMage has Mad Genius. I've been using it for a little over a year for shared hosting and it's worked well. A few times it's been down for a couple of hours, and it's clearly a small, one or two person operation, but overall for the price, no complaints at all.

Promo code for ATOTers: AT30-vivi

https://madgenius.com/

I've been using madgenius for many years now (I've lost track). Awesome service and Vivi is very quick and responsive whenever I've ever had any issues. Never been happier
 
Does your load require RDS? You might be fine with just running mysql on your own ec2 instance. Or using a platform that doesn't require a database and just hosting the site on s3. (Great for blogs). My job pretty much is designing cloud based solutions, if you can give detail of what you are running and what it's use rate is, I can probably help you design a cost effective solution. I may even write the terraform/cloudformation for it.

Thanks for the assistance 🙂

The problem is this stuff is getting out of my technical awareness. I have a web guy building my site and a programmer doing an app for it w/database. I'm kinda stuck in the middle on what they want. So the app is angular connected to a MySQL database (it will be used for my 5 employees to clock in and out on and track inventory). My existing host doesn't have nodejs so it wouldn't run. The programmer said I needed a Win VPS, something that can run nodejs and accommodate angular and MySQL. So for testing I switched to AWS. I think he said he can move it off of RDS, but at some point out of testing I'll need a permanent parking space for it.
 
Windows for node? interesting. With only 5 users, I'd run a t2.medium which is about $0.06 an hour (less if you prepay) and host both the node application and the database there. Another option would be the smallest RDS instance for mysql which is $0.041 an hour and a t2.small at $0.0392. Again, cheaper with prepayment. If you could move to linux the cost drops from there.

I could put together a quick CFT for building out the infrastructure. Really for a node.js application. I'd try to host the static files on S3, the database on the smallest RDS (or a even smaller EC2 instance if you don't need HA) and then host the node logic on lambda. Your costs would be a fraction of VPS/EC2 with that setup. That would require a change in mindset from the developer however.
 
Internal use, 5 users -- sounds like a much cheaper more basic single-server setup would be fine. Do you need more than 60 GB of database storage? Lightsail does offer Windows instances too starting at $8/month total.

FYI, you can set up scripts to back up a Lightsail server for safety.

Edit: or go with sourceninja's suggestion.
 
Windows for node? interesting. With only 5 users, I'd run a t2.medium which is about $0.06 an hour (less if you prepay) and host both the node application and the database there. Another option would be the smallest RDS instance for mysql which is $0.041 an hour and a t2.small at $0.0392. Again, cheaper with prepayment. If you could move to linux the cost drops from there.

I could put together a quick CFT for building out the infrastructure. Really for a node.js application. I'd try to host the static files on S3, the database on the smallest RDS (or a even smaller EC2 instance if you don't need HA) and then host the node logic on lambda. Your costs would be a fraction of VPS/EC2 with that setup. That would require a change in mindset from the developer however.

I think the Windows thing might be because he's more familiar with that platform. He wasn't exactly supposed to upload all this to a site, someone else was. He was just supposed to do the angular code.

Does it matter that it doesn't need to run 24/7? Maybe 12 hours out of the day.

Thanks for the help!

Internal use, 5 users -- sounds like a much cheaper more basic single-server setup would be fine. Do you need more than 60 GB of database storage? Lightsail does offer Windows instances too starting at $8/month total.

FYI, you can set up scripts to back up a Lightsail server for safety.

Edit: or go with sourceninja's suggestion.

60GB is plenty. I'm only going to keep a month's worth of time online anyway before off loading it locally.

$8/month is pretty sweet. I'll have to check out Lightsail more. It's really a little mind bending looking at all the services on AWS, it's like acronym heaven 😀
 
You know that Google Cloud gives everyone a $300 service credit for new accounts, right? You could basically run your small site for free for a year on that platform.
 
I think the Windows thing might be because he's more familiar with that platform. He wasn't exactly supposed to upload all this to a site, someone else was. He was just supposed to do the angular code.

Does it matter that it doesn't need to run 24/7? Maybe 12 hours out of the day.

Thanks for the help!



60GB is plenty. I'm only going to keep a month's worth of time online anyway before off loading it locally.

$8/month is pretty sweet. I'll have to check out Lightsail more. It's really a little mind bending looking at all the services on AWS, it's like acronym heaven 😀

You could easily setup a auto-stop/start functionality for the instances to keep costs down. https://aws.amazon.com/premiumsupport/knowledge-center/start-stop-lambda-cloudwatch/
 
You could easily setup a auto-stop/start functionality for the instances to keep costs down. https://aws.amazon.com/premiumsupport/knowledge-center/start-stop-lambda-cloudwatch/

It still sounds like the developer is spending way too much on the AWS services for an internal server with 5 users, but maybe they have a good reason.

With regular backups I'm not sure why this needs more than a single Lightsail instance running MySQL on itself instead of using separate db servers.

(If paranoid about db loss from a corrupted server they could do both instance backups and run mysqldump and copy the file.)
 
You know that Google Cloud gives everyone a $300 service credit for new accounts, right? You could basically run your small site for free for a year on that platform.

Nope, had no idea.

You could easily setup a auto-stop/start functionality for the instances to keep costs down. https://aws.amazon.com/premiumsupport/knowledge-center/start-stop-lambda-cloudwatch/

Hired!
It still sounds like the developer is spending way too much on the AWS services for an internal server with 5 users, but maybe they have a good reason.

With regular backups I'm not sure why this needs more than a single Lightsail instance running MySQL on itself instead of using separate db servers.

(If paranoid about db loss from a corrupted server they could do both instance backups and run mysqldump and copy the file.)

Nah, not his fault. I put him in a position that he wasn't hired for. I ended up with AWS because I was rushing to find a way to test his code since it wouldn't run on my existing host. It is odd that as an angular/database programmer that he doesn't know more about servers, but he probably felt like a kid in a candy store with all of the options at AWS.

I'm not sure either. I think I need to hire a consultant now 🙂
 
Back
Top