Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

which server side language nginx webserver supports

which server side language nginx webserver do support? For example apachi-tomcat is for java, wammp is for php. and secondly it is installed on my pc i need to know that how can i access it via http and in which do i need to put my applications

like image 874
Ali Raza Avatar asked Oct 06 '11 10:10

Ali Raza


1 Answers

WAMP is not a webserver. *W*indows *A*pache *M*ySQL *P*HP. Usually web-server do not came with language support. They either have modules, for apache it's like mod_php, mod_python, mod_passenger, etc, for nginx there's no module, you'll need standalone fastCGI or PHP-FPM.

So basically nginx can support any language with fastCGI or fastCGI-like interface available.

like image 180
petermolnar Avatar answered Nov 15 '22 14:11

petermolnar