|
|
@@ -1,4 +1,4 @@
|
|
|
-# ProxyTester
|
|
|
+# Httphound
|
|
|
|
|
|
A simple Python tool to test reverse proxy configuration
|
|
|
|
|
|
@@ -32,7 +32,7 @@ pip install .
|
|
|
3. An HAProxy template must be present somewhere, or use the very basic one **haproxy.cfg.tpl**
|
|
|
|
|
|
```bash
|
|
|
-proxytester --test-dir example_tests/
|
|
|
+httphound --test-dir example_tests/
|
|
|
```
|
|
|
|
|
|
## Test Configuration Format
|
|
|
@@ -40,7 +40,7 @@ proxytester --test-dir example_tests/
|
|
|
Each test is defined as Python class inheriting from ``BaseProxyTest``
|
|
|
|
|
|
```python
|
|
|
-from proxytester.main import BaseProxyTest, BackendConfig, ProxyConfig
|
|
|
+from httphound.main import BaseProxyTest, BackendConfig, ProxyConfig
|
|
|
|
|
|
class BasicGetTest(BaseProxyTest):
|
|
|
def __init__(self):
|