Skip to content

update cjson add comment #127

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 3, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,18 @@ Here is an example with `ngx_lua`:
```nginx
# Nginx, configuration

# If you're experience an problem with lua-resty-core like
# https://github.com/openresty/lua-nginx-module/issues/1509
# it can be disabled by the following directive.
#
# lua_load_resty_core off;

# If you're not using lua-resty-core you may need to manually specify a path
# to cjson module. See the documentation:
# https://github.com/openresty/lua-nginx-module#lua_package_cpath
#
# lua_package_cpath "/path/in/lua/cpath/format/?.so";

upstream tnt_upstream {
server 127.0.0.1:9999;
keepalive 10000;
Expand Down