Search results

  1. J

    LSAPI Remote Server/Process Group/PHP Selector

    I assume processgroup mode also doesn't work?
  2. J

    LSAPI Remote Server/Process Group/PHP Selector

    Is there any kind of security for the remote PHP option or would I be relying purely on firewall rules if I don't trust the scripts being run on the web server / php server? (shared hosting)
  3. J

    Wildcard config file include?

    Is there a way to configure the litespeed specific features in an apache config file?
  4. J

    LSAPI Remote Server/Process Group/PHP Selector

    Is it possible to set up a load balanced group of PHP LSAPI servers in process group mode so users can still select their own version/configurations of PHP?
  5. J

    Wildcard config file include?

    Is it possible to do something similar to Apache where you set up a wildcard include and have a config file to define each vhost without just using apache config files? It would be nice to not have to code a script to edit a file with potentially thousands of vhost entries if it is unnecessary.
  6. J

    [Resolved] Workergroup - Keeping parent processes alive

    Thank you, that seems to be working.
  7. J

    [Resolved] Workergroup - Keeping parent processes alive

    Ok. My goal is: 1. PHP parent processes stay around for a very long time for opcode/var caching 2. PHP child process die off after a minute or two at most to free up RAM Right now I am experiencing either one or the other. If I set max idle time to 3600 idle child processes stick around...
  8. J

    [Resolved] Workergroup - Keeping parent processes alive

    I added <IfModule LiteSpeed> LSPHP_ProcessGroup on </IfModule> to the include file for one virtual host to test. After restarting lsws that virtual host's processes spawn in their own parent process separate from all other virtual hosts. To me this indicates that it is enabled and...
  9. J

    [Resolved] Workergroup - Keeping parent processes alive

    I tried setting the max idle time configuration option to -1 to make sure at least one process for each user stays open at all times but shortly after the last child process disappears I get: [INFO] [CLEANUP] Send signal: 10 to process: 870395 (the parent process) My goal is to get it so all...
Top