Zeus User Community
Independent community for users of Zeus Technologies products.
 
*
Welcome, Guest. Please login or register.
Did you miss your activation email?
September 06, 2010, 09:54:46 PM


Login with username, password and session length


Pages: [1] 2 3 ... 10
 1 
 on: September 05, 2010, 11:40:04 PM 
Started by natebarnz - Last post by ambrose.john585
hi,

I no this is not legal on this his type of forum but i need Traffic Script i am not programmer my self that's why if some one gave me even for money i will buy it ...

SORRY for my bad English  Embarrassed

 2 
 on: September 02, 2010, 10:06:08 AM 
Started by natebarnz - Last post by karthy
Hi

You can make a traffic script rule, which finds this querystring and then add's these requests to a ratelimit class - this will not "drop" the connections, but slow them down to the limit your are setting. If the hightraffic continues, then of cause connections will be dropped in the end...

Karsten

 3 
 on: September 02, 2010, 10:03:30 AM 
Started by akfoote - Last post by karthy
Hi Kevin

This can hopefully be a great discussion and I'm sure, that no single solution fits all cases. My intuitive feeling is, that keep-alive is a good thing - also between zxtm<->apache - the cost of opening/closing tcp connections can be saved. I'm also of the impression, that the ZXTM cache is more effective than the Apache cache (again - we are saving the roundtrip times from zxtm to Apache), but I could be wrong.

I believe, that to find the best solution for your particular setup, you will first have to establish a performance measurement setup where you can make reproducible results and then fiddle with different settings. Once this setup is in place, then it would be great to see some results from various settings and strategies but also to know a bit about the site (number of backends, platforms, static vs. dynamic content, SSL vs. non-SSL and the likes).

If this thread is providing valuable information, then it is a great idea to make the topic sticky.

My personal experience is, that moving as mush work as possible to the zxtm is improving performance - so taking benefit of:

* content compression
* ssl offload
* content caching

is all improving performance - also on Apache based sites - but to be honest, I have done most performance analysis on Java backends :-)

Common guys - add your experience to the thread....

 4 
 on: September 01, 2010, 07:42:48 PM 
Started by akfoote - Last post by akfoote
First wondering if anyone knows of some common sense / best practices / from the trenches info for running zxtm -> apache VM ??

Our site is running well but now I'd like to tweak apache for the best performance behind zxtm.. Just thinking in my head about things like KeepAlive On/Off, how many apache servers should we start up with? Min and Max for SpareServers, MaxRequestsPerChild.. Is it wise to run with a small mod_mem_cache cache defined.. (if using ztm cache/ or if not)

I know one solution will not fit all and that is why Zeus does not give authoritative settings for things that sit behind it, but there has to be some info glean-able from the community that others can make use of.

Examples: currently I use KeepAlive Off within apache and zxtm has KeepAlive On this is what I believe is recommended via [2]. I also run no mod_mem_cache and no zxtm cache

Secondly if we do get some responses here.. how about a sticky topic? or similar as this info would be pretty useful id think. If not this post will just remain idle and eventually roll off into the background.

I've looked around on the http://www.zeus.com site and they have a few things[1][2] but nothing that gets into nuts and bolts of apache per say.

[1] http://knowledgehub.zeus.com/articles/2005/09/01/what_s_the_best_way_to_integrate_apache
[2] http://knowledgehub.zeus.com/articles/2006/09/07/make_your_applications_run_faster_with_z


- kevin

 5 
 on: August 31, 2010, 02:11:37 AM 
Started by natebarnz - Last post by natebarnz
Please tell me if this is possible with zeus.

I want to drop connections that meet a query string regex when the match is in excess of X requests per second.

If I start getting 100+ requests per second that contains the word foobar= in the query string then I want to drop all those connections until it slows down.

Thanks
-nate-

 6 
 on: August 30, 2010, 03:37:54 PM 
Started by Kosch - Last post by casting professional
Yes, it has great http inspection so we are not worried of any possible intrusions or attacks to our web applications.

 7 
 on: August 24, 2010, 06:22:58 PM 
Started by Steven - Last post by Steven
Hi all,

Just wondering if anyone's having any issues since upgrading from 6.0r6 to 6.0r7 - cluster issues, problems pulling historical activity?

Cheers,
Steven

 8 
 on: August 24, 2010, 06:15:31 PM 
Started by crackerjack - Last post by Steven
Hi,

A quick note that "Change Site" functionality is also available for RuleBuilder rules.
It's under "Actions" ->
under "Requests and Responses" section, expand "HTTP only" ->
click on "Change HTTP site".

Cheers,
Steven

 9 
 on: August 16, 2010, 10:33:09 AM 
Started by crackerjack - Last post by karthy
Hi

It can be done with a single line of TrafficScrips:
Code:
http.changeSite( "https://".http.getHostHeader() );

From the manual:

Quote
http.changeSite()

Redirect users to a new website. It is a more sophisticated version of http.redirect(), that will preserve the original path that the request asked for. For instance, if the original request was for "http://www.example.com/image/image.jpg", then http.changeSite( "example.co.uk" ) would redirect the user to "http://example.co.uk/image/image.jpg" The redirection will preserve the original path (and any query string) of the request, together with the port number and protocol. If you wish to force any of these details, then you can specify them as part of the supplied host name. e.g. http.changeSite( "https://www.example.com" ) will always send people to a SSL-encrypted site. You can also add on a prefix to the path of the URL, e.g. http.changeSite( "www.example.com/oldsite" ) would redirect a request for "http://www.example.com/missing/page.html" to "http://www.example.com/oldsite/missing/page.html". If the original request matches the supplied redirection, then http.changeSite() will take no action and let the request continue. This ensures that no 'redirection loops' occur.

# Send users to our US site
if( http.getHostHeader() == "www.zeus.co.uk" ) {
   http.changeSite( "www.zeus.com" );
}

 10 
 on: August 16, 2010, 07:35:36 AM 
Started by crackerjack - Last post by crackerjack
Hi Guy´s,

i´ve a little question:
we want to do http-redirect to an https-Site:
here´s my rule
Conditions:
Code:
HTTP Header - Host - equals - www.mysite.com

Actions:
Code:
HTTP Redirect - https://www.mysite.com


But now we´ve a little Problem:
when somebody tries to call for example the site
Code:
www.mysite.com/folder/offer.html
direct (because he saved this Linke in his favorites),
then he´ll be redirected to the Site which i specified in the Rule -> in this case: https://www.mysite.com

So my question:
how can i get it work that there´s an https-redirect for each site i call independent the URL that was called
eg:
So when I call
Code:
www.mysite/folder/offer.html
it should be redirect to ->
Code:
https://www.mysite/folder/offer.html
or another call
Code:
www.mysite/anotherfolder/sales.html
should redirect to ->
Code:
https://www.mysite/anotherfolder/sales.html

or generally:
Code:
http://...
-> should be redirected to
Code:
https://...

Did somebody have an idea because i don´t want to specifiy a rule for every URL.

Regards

Pages: [1] 2 3 ... 10
Powered by MySQL Powered by PHP Powered by SMF 1.1.11 | SMF © 2006-2009, Simple Machines LLC

Images and graphics used with permission of Zeus Technology.
Valid XHTML 1.0! Valid CSS! Dilber MC Theme by HarzeM