Search results

  1. M

    lspai and RESTful routes

    Please make sure to use our full domain name, SPAM robots are crazy collecting email addresses. ;)
  2. M

    cgi suexec / cPanel server

    What is this about?
  3. M

    cgi suexec / cPanel server

    Just add something like "sleep(60)", so you will have time to check the process uid with "ps" command. I believe that the script is run as the uid/gid of the owner of document root.
  4. M

    lspai and RESTful routes

    Do you have a ready to use test application? If you do, please send it to bug @ litespeed ... , we will try to reproduce it in our lab.
  5. M

    cgi suexec / cPanel server

    If the user have read permission on that file, then the script can still read it. LSWS only guarantee itself won't be tricked to serve anything out side the document root, it has no control over a script unless the script is placed in a chroot jail. You can make the script run slower and check...
  6. M

    cgi suexec / cPanel server

    It should be automatic if the virtual host has "User/Group" configuration or "SuexecUserGroup" configuration.
  7. M

    moinmoin and litespeed fastcgi

    What is your OS? Which version LSWS is used?
  8. M

    moinmoin and litespeed fastcgi

    The error message is strange, can you please post your external app configuration and context configuration?
  9. M

    limiting the number of rails process per vhostTemplate?

    Just go to listener configuration tab. select the listener that serve the vhost, check only "Process 1" for the binding configuration. http://www.litespeedtech.com/docs/webserver/config/listeners/#listenerBinding
  10. M

    limiting the number of rails process per vhostTemplate?

    Are you using a trial or standard? Trial is a 2-CPU license, which start 2 worker process, each worker process will start its own ruby process, so if you use a trail, please make sure to bind the listener to only one process. And ruby LSAPI process manager may start extra children processes...
  11. M

    ProxyPass

    In Apache config file, since all vhosts are configured through httpd.conf, right?
  12. M

    limiting the number of rails process per vhostTemplate?

    Under the Rails Context in the template, "Max Connection".
  13. M

    limiting the number of rails process per vhostTemplate?

    You can only set the limit per template member, not possible for the whole template.
  14. M

    mod_security question

    Just change the version number to 3.2.1 in the download link
  15. M

    mod_security question

    It turns out to be a bug parsing query string with only one variable name, if there are other request variable or has a value, it will be caught. The fix is in our 3.2.1 build, can you download and give it a try.
  16. M

    mod_security question

    How this rule was configured? in httpd.conf? which section of httpd.conf? or in LiteSpeed web console? Can you please try the rule in another format? SecFilterSelective "ARGS" "testit" should have the same effect as yours, I just want to make sure it is not a bug with "SecFilter" directive.
  17. M

    default lsphp no mysql

    You need to change mysql.default_socket configuration to where the MySQL socket located, it could /tmp/mysql.sock, or /var/lib/mysql/mysql.sock depends on the MySQL server installation.
  18. M

    ProxyPass

    Assume you want to redirect URL "/backend/*" to Apache run at 192.168.0.30:8080. You need to do the following, 1. create web server external application with name "192.168.0.30:8080" or whatever you want, like "apache_backend". 2. create a rewrite rule RewriteRule ^/(backend/.*)...
  19. M

    SSI not working?

    Yes, you can delete the default vhost. The default listener should not interfere with anything, unless it listen on port 80 or 79.
  20. M

    SSI not working?

    You need to change the "Port" configuration in httpd.conf from 80 to "79", as well as "NamedVHost" directive.
Top