Hello, On 03/20/17 09:49, Anders Trobäck wrote: > Does anyone know if it's possible to run productivity/davical in httpd > and if it's possible do you have any recipe for httpd.conf? The > "pkg-readme" only have Apache and Nginx examples.
I'm running davical on httpd with these settings in httpd.conf ext_addr="*" server "default" { listen on $ext_addr port 80 listen on $ext_addr tls port 443 # Increase connection limits to extend the lifetime connection { max requests 500, timeout 3600 } location "/" { directory index index.php } location "/davical/*.php*" { fastcgi socket "/run/php-fpm.sock" root "/davical/htdocs" } ... } For php-fpm, I set pm.max_children to 25 because the default of 5 was too less for my usage. Good luck, Michael