123456789101112131415161718 |
- #worker_processes 1;
- pid /tmp/nginx.pid;
- error_log /dev/null crit;
- #error_log /tmp/test.log error;
- events {
- worker_connections 16384;
- }
- http {
- access_log off;
- lua_package_path 'CWD/openresty/?.lua;;';
- server {
- listen 8080;
- location / {
- content_by_lua 'require("app").handler(ngx)';
- }
- }
- }
|