Skip to content

Commit

Permalink
Update README.md with example
Browse files Browse the repository at this point in the history
  • Loading branch information
dvershinin committed Jan 27, 2019
1 parent 7fa058c commit 3ba1235
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ This NGINX module allows to empower your dynamic content with automatic [`ETag`]
header. It allows client browser to issue conditional `GET` requests to
dynamic pages. And thus saves bandwidth and ensures better performance!

## Synopsis

```
http {
server {
location ~ \.php$ {
dynamic_etag on;
fastcgi_pass ...;
}
}
}
```

## Configuration directives

### `dynamic_etag`
Expand Down

0 comments on commit 3ba1235

Please sign in to comment.