lua_code_cache off; init_by_lua_block { require("aproxy.main").init() } server { listen 80; location / { default_type text/html; # must happen before proxy_pass access_by_lua_block { require("aproxy.main").access() } proxy_pass http://localhost:9999; } }