-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnginx.conf
35 lines (27 loc) · 898 Bytes
/
nginx.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
worker_processes auto;
pid logs/nginx.pid;
error_log logs/error.log notice;
events {
worker_connections 2048;
accept_mutex off;
multi_accept on;
}
http {
include mime.types;
default_type text/plain;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for" '
'$request_time $upstream_response_time '
;
access_log logs/access.log main;
# --------- relay config begin --------------
lua_code_cache on;
lua_package_path "/usr/local/openresty/lualib/?.lua;/path/to/luay-influxdb-relay/lib/?.lua;;";
lua_package_cpath "/usr/local/openresty/lualib/?.so;;";
lua_need_request_body on;
lua_shared_dict relay 1m;
init_by_lua_file '/path/to/lua-influxdb-relay/lib/relay/init.lua';
# --------- relay config end ----------------
include vhosts/influxdb-relay.conf;
}