I have a fairly popular site on the internet (15K visitors/day) on an micro Amazon instance.

Users are now competing for CPU-time.

Can I take my configuration to nginx?

How much 'work' is it?

link|improve this question

The amount of "work" is directly proportional to the complexity of the configuration you're migrating from. That's about the best answer we can give with the little information provided. – voretaq7 Jan 23 at 17:30
feedback

closed as not a real question by Shane Madden, SvenW, Khaled, MDMarra, voretaq7 Jan 23 at 17:31

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

Can I take my configuration to nginx?

Probably. nginx can do most things that Apache can do.. but it depends on your config.

How much 'work' is it?

Again, it depends. If your configuration is relatively simple, it'll take 5 minutes. If it's incredibly complex, hours.

link|improve this answer
7 domains with some custom log file paths, some htaccess files with rewrite rules some php .. that's it i think – ulvund Jan 22 at 20:41
1  
You will need to port the use of the htaccess files to nginx format and locations. – becomingwisest Jan 22 at 20:50
1  
@ulvund Also, if the reason your users are competing for CPU time is actually the PHP code, not much will be won by migrating to ngnix. – syneticon-dj Jan 23 at 0:34
No PHP code on the popular pages. I do however run some ruby crawlers on the side – ulvund Jan 23 at 13:28
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.