Search results

  1. N

    www not working

    is the virtual host defined in lsws admin console(i.e., native virtual host) or come from apahce's httpd.conf? if it's native virtual host, check Configuration->Listeners->Virtual Host Mappings, domains part.
  2. N

    Where are litespeed's default error page templates ?

    it can be customized by apache directive ErrorDocumnet http://httpd.apache.org/docs/2.2/mod/core.html#errordocument
  3. N

    litespeed on High I/O amazon ec2

    the 90k connections should be no problem for litespeed to handle, but it may hit some hardware / OS limit for example NIC throughput. assume all 90K connections are downloading large videos, for 10Gbit NIC, each connection will get max 11 bytes/second speed ? this speed won't be able to view...
  4. N

    Host replace for proxy configuration

    for purge / refresh cache, please refer http://blog.litespeedtech.com/2013/02/14/dont-get-overrun-when-you-update/
  5. N

    Host replace for proxy configuration

    can you give an example URL, so make it easier to discuss, to see if current lsws can do it or not based on my experience.
  6. N

    sales questions

    if you can predict the hardware change, should not be a issue. before change, you issue command: /usr/local/lsws/bin/lshttpd -m after change, you issue /usr/local/lsws/bin/lshttpd -r there is a 3 day overlap period.
  7. N

    Host replace for proxy configuration

    I encountered exact same issue as you before ... you can keep other context like /abc/ at the same time but can't keep context / since it matchs everything. and in rewriterule you can do almost everything which a contect can, and, in context, no such "Proxy-Host" function yet, so any special...
  8. N

    LSWS 4.2.2 VS mod_security

    Hi, it has been fixed. will be in next build. Thanks for your reporting. :)
  9. N

    Host replace for proxy configuration

    :) please refer: https://store.litespeedtech.com/store/knowledgebase.php?action=displayarticle&id=21 about "Proxy-Host" for your case: RewriteRule (.*) http://VanguardiaWeb/$1 [P,E=Proxy-Host:www.example.com] however, if frontend and backend server's domain name are same, you don't need set...
  10. N

    sales questions

    yes. long answer: How to transfer or release existing license so it can be used on another server http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:license:transfer_release_license yes, How to upgrade or downgrade my current license...
  11. N

    Host replace for proxy configuration

    this rewriterule do same as proxy / context: RewriteRule (.*) http://VanguardiaWeb/$1 [P] but don't use them at the same time. use either one.
  12. N

    sales questions

    you can email to sale@... also http://www.litespeedtech.com/support/wiki/doku.php Licenses and the store: http://store.litespeedtech.com/store/cart.php of course, you can ask some general sales info here in the forum.
  13. N

    Host replace for proxy configuration

    for example in your case, if you define a proxy context which URI is /, then your all your rewriterules should be useless, whether they are parsed or not. enable debug log and rewrite log, you can see the details how there rules are processed and what's the final result. debug log: admin...
  14. N

    Host replace for proxy configuration

    the rewrite/proxy has been working for long, and I've done many tests on this function in the past. I'd share more experience after you've got it working, for example, how to get it working with cache in rewriterule. please check if you've defined proxy context at the same time. if so, best...
  15. N

    Host replace for proxy configuration

    what's the lsws version used? please give the output of #ls -lt /usr/local/lsws/bin/lshttpd*;date;date -u
  16. N

    Host replace for proxy configuration

    can't miss the [P] flag for proxy. ==> RewriteRule (.*) http://VanguardiaWeb/$1 [P]
  17. N

    Host replace for proxy configuration

    in your case: Name: test-proxy Address: 192.168.120.47:80 your rewrite rule change to: RewriteRule (.*) http://test-proxy/$1 [p]
  18. N

    Host replace for proxy configuration

    please refer http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:reverse_proxy_cache 1. Create Web Server External App
  19. N

    apc and fragmentation suggestions.

    in this case, try apc.gc_ttl=0
  20. N

    Max request body size

    the latest build(4.2.2) has fixed the issue. I tested with php script many times, it's working now. will write a wiki later. during the testing, found a php issue as well: to upload file >2G, in php.ini upload_max_filesize must set to 0. if set to 3G etc, upload will fail.
Top