There are web applications that must always run on the server in order to work, create open port/socket we usually reverse proxy via Nginx or Apache later.

But there also are applications that do not run unless resource is requested or cron job is triggered. Most commonly PHP sites.

How can be call this two types to distinguish them?

  • heartlessevil@lemmy.one
    link
    fedilink
    English
    arrow-up
    4
    ·
    1 year ago

    Probably server-style versus CGI style? But it’s a blurry distinction because things we usually run as servers (such as node.js or rails) can hypothetically be run as CGI; and things we usually run CGI style (such as PHP) can also be run server-style with FastCGI.

  • elmicha@feddit.de
    link
    fedilink
    arrow-up
    2
    ·
    1 year ago

    Maybe you are talking about CGI scripts? With CGI scripts the web server will start a new process for each request. PHP can run as php-cgi, but nowadays mod_php and php-fpm are more common. CGI scripts can also be shell scripts or compiled programs.