-
-
Save adamdilek/881d72b60696c8140a1f628aa5671abd to your computer and use it in GitHub Desktop.
Siege examples
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Basic example | |
siege -t60s -c20 -d10 'http://robertomurray.co.uk/' | |
# Basic auth; | |
$auth = echo -n 'username:password' | openssl base64 | |
siege -t60s -c20 -d10 --header="Authorization:Basic $auth" 'https://staging.a-hostname.co.uk/' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment