7 lines
128 B
Bash
7 lines
128 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# 50 concurrent users, running forever
|
|
ab -k -c 50 -t 300 -H "Host: blog.localhost" http://127.0.0.1:8080/
|