1

Hey guys, I have a webhost, and an EC2 server (to run a game server on). The problem is that I want to access/modify the EC2's files with php admin programs. I looked into a lot of options to just have the webhost communicate with the EC2 server (ssh, etc), but none of them panned out.
My question is if I were to install a lightweight webserver (think lighttpd) on my EC2 server, how badly would it hurt the game server's performance? I was leaning away from this solution, even though the webserver (on the EC2 server) wouldn't get many hits (less than a 100 a day).

Thanks for your thoughts, Max

Jess
  • 389
  • 1
  • 6
  • 16

1 Answers1

2

Unless the webserver runs heavy duty stuff I doubt it'll have any impact at all.
Idle webservers use very little resources (my, mostly idle, nginx tags in at about 3mb total RAM).

Mark
  • 740
  • 5
  • 5
  • Exactly what I was hoping to here, bonus question, which server do you use? (Apache, etc) – Jess Mar 12 '11 at 08:23
  • [Nginx](http://nginx.org/) together with [PHP-FPM](http://php-fpm.org/) running on an Ubuntu 10.10 (Micro instance) – Mark Mar 12 '11 at 08:29