Skip to content

Instantly share code, notes, and snippets.

@aradhell
Forked from rob-murray/siege_examples.sh
Created August 12, 2020 00:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aradhell/c5dd95499b930ef932a83af46c47776f to your computer and use it in GitHub Desktop.
Save aradhell/c5dd95499b930ef932a83af46c47776f to your computer and use it in GitHub Desktop.
Siege examples
# 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