Posts Tagged “nginx”

As described on my tutorial regarding Nginx installation for reverse proxy, we don’t have any working nginx startup script. Because we installed our nginx from source (to get the latest stable version).

We need to add the script manually to our server

Read the rest of this entry »

Comments 1 Comment »

Many peoples got problems with Apache Load if their website is having a high traffic.

There’re are also many solutions regarding this

  • Buy new higher specs of Hardware
  • Make a clustered webserver
  • More optimization

What we will do in this article is MORE OPTIMIZATION

Read the rest of this entry »

Comments 1 Comment »

By now I’m writing this post, nginx latest stable version is nginx-0.6.35

I tried to see which version is nginx.net using right now..

Read the rest of this entry »

Comments No Comments »

I searched on google and I think never heard about it.

I actually have implement nginx + vbseo on the forum that I maintained. You can see them here and here

How to create a nginx rewrite rule that is working for vBulletin and vbSEO plugins?

Read the rest of this entry »

Comments 7 Comments »

I’ve spending my time to search how wordpressMU on nginx can support WP Super Cache plugin

By default they only giving us the rewrite rules for Apache

Default nginx rewrite rules without WP Super Cache plugin

rewrite ^.*/files/(.*) /wp-content/blogs.php?file=$1;
if (!-e $request_filename) {
rewrite ^.+?(/wp-.*) $1 last;
rewrite ^.+?(/.*\.php)$ $1 last;
rewrite ^ /index.php last;
}

WP Super Cache plugin will not able to run with that rewrite rules. So now the question is, How can we make nginx rewrite rule to work with WP Super Cache plugin ?

Read the rest of this entry »

Comments 5 Comments »

I have described how to recompile/install nginx to support upstream hash module on Debian/Ubuntu before.

But I don’t know why it’s not appear on search engine.

Read the rest of this entry »

Comments No Comments »