Compare commits

..

No commits in common. "48e0d762ec05d4a11463e501aa0423437c399c2f" and "15225f65609cf12bc797c1c71bb66c99c764aaee" have entirely different histories.

2 changed files with 0 additions and 30 deletions

1
.gitignore vendored
View File

@ -1 +0,0 @@
*.swp

View File

@ -1,29 +0,0 @@
### Get Backend list and their status
```bash
varnishadm backend.list
```
### Get value of a config parameter
```bash
varnishadm param.show http_resp_hdr_len
```
### Set value of a config parameter
```bash
varnishadm param.set http_resp_hdr_len 16384
```
### Ban URL
```bash
varnishadm ban req.http.host == example.com '&&' req.url '~' '/test/'
```
### Get request detail filtered by ReqURL
```bash
varnishlog -q 'ReqURL eq "/test/"' -g request
```