Skip to content

Commit

Permalink
documented the dynamic module support in README.
Browse files Browse the repository at this point in the history
  • Loading branch information
agentzh committed Feb 23, 2016
1 parent f191934 commit 1608c19
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Expand Up @@ -260,6 +260,14 @@ make -j2
make install
```

Starting from NGINX 1.9.11, you can also compile this module as a dynamic module, by using the `--add-dynamic-module=PATH` option instead of `--add-module=PATH` on the
`./configure` command line above. And then you can explicitly load the module in your `nginx.conf` via the [load_module](http://nginx.org/en/docs/ngx_core_module.html#load_module)
directive, for example,

```nginx
load_module /path/to/modules/ngx_http_lua_upstream_module.so;
```

[Back to TOC](#table-of-contents)

Author
Expand Down

0 comments on commit 1608c19

Please sign in to comment.