
##
# You should look at the following URL's in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# http://wiki.nginx.org/Pitfalls
# http://wiki.nginx.org/QuickStart
# http://wiki.nginx.org/Configuration
#
# Generally, you will want to move this file somewhere, and start with a clean
# file but keep this around for reference. Or just disable in sites-enabled.
#
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
##

server {
	listen   8090; ## listen for ipv4; this line is default and implied
	#listen   [::]:80 default_server ipv6only=on; ## listen for ipv6

	root /var/www/html;
	index index.php index.html index.htm;

	# Make site accessible from http://whatever/
	server_name _ default;

	location / {
		# RewriteRule ^(.*)controller\.php$ - [L]
		# RewriteRule ^(.*)static/ - [L]
		# RewriteCond %{REQUEST_FILENAME} !-f
		# RewriteCond %{REQUEST_FILENAME} !-d
		# RewriteRule . controller.php [L]
                if ($request_filename ~* ^.*controller.php$ ) { 
                    break;
                }
                if ($request_filename ~* ^.*static/ ) { 
                    break;
                }
                if (!-e $request_filename) { 
                    rewrite ^.*$ /controller.php last; 
                    break;
                }
		# First attempt to serve request as file, then
		# as directory, then fall back to displaying a 404.
		try_files $uri $uri/ /index.html;
		# Uncomment to enable naxsi on this location
		# include /etc/nginx/naxsi.rules
	}

	location ~ \.php$ {
            fastcgi_pass unix:/var/run/php5-fpm.sock;
            fastcgi_index index.php;
            include fastcgi_params;
        }
}

