Serving CGI Scripts With Nginx On Ubuntu 12.04
This tutorial shows how you can serve CGI scripts (Perl scripts) with
nginx on Ubuntu 12.04. While nginx itself does not serve CGI, there are
several ways to work around this.
Serving CGI Scripts With Nginx On CentOS 6.3
This tutorial shows how you can serve CGI scripts (Perl scripts) with
nginx on CentOS 6.3. While nginx itself does not serve CGI, there are
several ways to work around this.
Serving CGI Scripts With Nginx On Debian Squeeze/Ubuntu 11.04
This tutorial shows how you can serve CGI scripts (Perl scripts) with
nginx on Debian Squeeze/Ubuntu 11.04. While nginx itself does not serve
CGI, there are several ways to work around this.
I just installed Nginx 1.2.4 and PHP 5.4.0 (from svn) (php fpm). CentOs 5.8 64
The problem I have is that PHP crashes the moment I run any social oAuth scripts. I have tried to log into Facebook, Twitter and Google with various scripts that I know work on my other servers. When I load the scripts I get a 502 error from Nginx.
Using GeoIP With Nginx On Ubuntu 12.04
This tutorial explains how to use the GeoIP module with nginx on
Ubuntu 12.04 to find out where your visitors come from. The GeoIP module
sets multiple variables like $geoip_country_name, $geoip_country_code, $geoip_city,
etc.
I have set up a local testing VM with Ubuntu Server 12.04 LTS and the LEMP stack. It's kind of an unconventional setup because instead of having all my PHP scripts on the local machine, I've mounted an NTFS share as the document root because I do my development on Windows.
Using GeoIP With Nginx On Debian Squeeze/Ubuntu 11.04
This tutorial explains how to use the GeoIP module with nginx on
Debian Squeeze/Ubuntu 11.04 to find out where your visitors come from.
The GeoIP module sets multiple variables like $geoip_country_name, $geoip_country_code, $geoip_city,
etc.
I have 2 sites-enabled, with server_name as follows:
server_name www.mysite.com mysite.com
and
server_name dev.mysite.com
Problem: When I access the website via its IP address, by looking at the access/error logs, it appears that nginx is serving off the root of dev.mysite.com.
How does nginx decide which to serve?
I want to set up nginx as my web server. I want to have image files cached in the memory (RAM) rather then disk. I am serving a small page and want few images always served from RAM. I dont wish to use varnish (or any other such tools) for this as I believe nginx has a capability to cache contents into RAM. I am not sure as how may I configure nginx for this?