How many fastcgi handlers can httpd configuration file have? I want to set up httpd server to server multiple fastcgi programs running on different tcp sockets. For example: http://uwsgi-docs.readthedocs.io/en/latest/OpenBSDhttpd.html
server "default" {
listen on 0.0.0.0 port 80
fastcgi socket ":3031"
}
Is it possible to have another fastcgi program listening on 3032 , 3034 etc?