Files
Jamie Curnow 4b15f1bc5e Fix lua-resty-http
Downgrade to lua 5.1.5. ngx_http_lua_module only works with 5.1
Re-add install lua-resty-http module
Adds simple test suite for http module
2026-06-02 20:56:53 +10:00

20 lines
287 B
Nginx Configuration File

user root;
worker_processes 1;
pid /tmp/nginx.pid;
error_log /dev/stderr warn;
events {
worker_connections 1024;
}
http {
access_log /dev/stdout;
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
include /etc/nginx/conf.d/*.conf;
}