Deki Wiki is cool but Apache is really too bloated.
Here’s how to get it working on Nginx Ubuntu.
Deki Wiki is cool but Apache is really too bloated.
Here’s how to get it working on Nginx Ubuntu.
Here’s a quick set up for Google App Engine’s SDK on Nginx.
Nginx combined with WP Super Cache for WordPress Mu is an interesting idea. However, you can potentially set up a simpler, and superior caching system using internal Nginx features that replaces the need for Super Cache.
Update: Do not use this config for php. Instead use php-fpm with xcache.
To configure Nginx to load balance multiple FastCgi servers use this type of configuration:
upstream servercom {
server 127.0.0.1:44440;
server 127.0.0.1:44441;
server 127.0.0.1:44442;
server 127.0.0.1:44443;
server 127.0.0.1:44444;
}location ~ \.php$ {
fastcgi_pass servercom;
fastcgi_index stream.app;
fastcgi_param SCRIPT_FILENAME /var/www/htdocs$fastcgi_script_name;
include /etc/nginx/fastcgi.conf;
}
“The plain HTTP request was sent to HTTPS port” is an Nginx error you can some times get when using applications that are set to redirect to https.