Search results

  1. N

    balancer redirects or proxy?

    balance do proxy not redirect; however, the browser renders the html content at the end
  2. N

    what goes first urlrewrite or context

    not sure, but apache compatible, so look up apache document may get the answer. to enable cache: RewriteRule /vanguardia/(.*) http://test-proxy/$1 [P, E=Cache-Control:max-age=60] I recommend you focus on vhost rewriterule only in your case. don't use .htaccess and context for less...
  3. N

    what goes first urlrewrite or context

    now almost clear, thanks for clarification. you can use rewriterule on virtual host(not .htaccess), and don't define any context. i.e., use virtual host level rewriterule to control all. as before, define a web server external app: name:test-proxy address:50.22.195.205:80 the...
  4. N

    what goes first urlrewrite or context

    not very clear about your request. what does it mean ?
  5. N

    Can I setup an Litespeed reverse proxy alongside cPanel?

    any issue if you try my previous post ?
  6. N

    Can I setup an Litespeed reverse proxy alongside cPanel?

    should be ok, if I understand the request right. follow http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:reverse_proxy_cache 1. Create Web Server External App create a "test-proxy" external app. then in .htaccess RewriteRule (.*) http://text-proxy/$1 [P]
  7. N

    Where are litespeed's default error page templates ?

    I did more tests, googled and followed http://blog.ninjahawk.net/whmcpanel-how-to-have-server-wide-custom-error-page So I assume you "add a global error document" also done by 'WHM Main >> Service Configuration >> Apache Configuration >> Include Editor' short summary of my tests on...
  8. N

    [solved] cache with url variables

    context level setting is ok, it'll override server/vhost level setting. cache policy refer following settings: Cache Request with Cookie Cache Response with Cookie Ignore Request Cache-Control Ignore Response Cache-Control Enable Private Cache hmm... it looks like missing one setting...
  9. N

    [solved] cache with url variables

    it should work as you expect. may relate to the cache policy you set. what's your cache policy ?
  10. N

    Stats: Requests per/day

    please try http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:rrd_graph_monitoring
  11. N

    Stats: Requests per/day

    it's counted since litespeed start. when restart, it reset to 0.
  12. N

    [solved] Modsecurity rules to protect WP login?

    do you have these modsecurity rules which works for apahce ? we can test and provide the compatibility info of these rules with litespeed.
  13. N

    Unable to access litespeed via whm

    please refer https://www.litespeedtech.com/support/forum/showthread.php?p=52707
  14. N

    problem with eAccelerator

    this is the reason --- you don't have a php.ini file for quick test, create /usr/local/lsws/lsphp5/lib/php.ini, add just 1 line: extension=eaccelerator.so restart lsws, the error may disappear.
  15. N

    Permission mask

    for exact match file permission, Required Permission Mask:0644 Restricted Permission Mask:7133 this corresponds to "chmod 644 for files", but no config option for "755 for folders"
  16. N

    adding .htaccess pasword on awstats

    please refer: admin console->Configuration->Virtual Hosts, select your vhost then Add-ons->AWStats Integration->Authentication Realm "Realm Specifies the authorization realm for this context. When specified, a valid user name and password must be provided in order to access this context...
  17. N

    problem with eAccelerator

    please check #/usr/local/lsws/fcgi-bin/lsphp5 -i |head -20
  18. N

    Where are litespeed's default error page templates ?

    just now tried in our lab's WHM/cPanel, the behavior is same as native vhost -- ErrorDocument in .htaccess override lsws's default 404 error page. also tried on one user account, :2083, "Error pages" works. although if there is ErrorDocument in .htaccess, .htaccess will override it. can you...
  19. N

    problem with eAccelerator

    I just compiled latest php 5.3.23 with eAccelerator(the version is 0.9.6.1) without problem --- phpinfo() ok with eAccelerator section and it's centOS 5.8 32-bit. how did you compile php -- via admin console or easyApache then building matching php ? eAccelerator's version ? is...
  20. N

    Where are litespeed's default error page templates ?

    just now I tested native virtual host, for ErrorDocument, virtual host setting override server's setting; .htaccess setting override virtual host's setting. so it works as expected ... but not test cPanel yet. will test it later. let's move forward step by step. :)
Top