Mehic.info

How to spin the Zend Framework on nginx ?

Easy! As you might know, on nginx there is no .htaccess file. So you must specify your routing in .vhost file. Here is an example of one zend page that is spining on nginx. Enjoy! server { listen 111.222.333.444:80; server_name website.ba www.website.ba; root /var/www/website.ba/web/public; index index.html index.htm index.php index.cgi index.pl index.xhtml; location ~ \.shtml$ { […]

Read more

How to install Node.js on Windows

Node.js is a platform built on Chrome’s JavaScript runtime for easily building fast, scalable network applications. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices. To install it to windows 7 follow these steps : 1. Download .msi file from Node.js […]

Read more

VirtualMin access problems

I was unable to access VirtualMin logging page since the Webmin logging page was shown when accessing through port 10000. So, the Webmin works fine, but VirtualMin doesn’t. I look for log errors in nano /var/webmin/miniserv.error and found following line : Perl module Authen::PAM needed for PAM is not installed : Can’t locate Authen/PAM$ BEGIN […]

Read more