What server language does nginx server support

what server language on nginx server supports? For example apachi-tomcat for java, wammp for php. and secondly, it is installed on my computer, I need to know how I can access it via http and in which I need to put my applications

+6
source share
2 answers

There is no language. It is primarily intended as a static and external proxy server.

The server itself is written in C and supports C-compatible plugins, but the plug-in architecture is largely focused on interacting with other servers on the rear panel, and not for adding, for example, PHP support.

+8
source

WAMP is not a web server. * W * indows * A * pache * M * ySQL * P * HP. Usually the web server does not support language support. They either have modules, and apache, like mod_php, mod_python, mod_passenger, etc. For nginx there is no module there, you will need standalone fastCGI or PHP-FPM.

Thus, in principle, nginx can support any language with the available fastCGI or fastCGI interface.

+3
source

Source: https://habr.com/ru/post/898750/


All Articles