mirror of
https://github.com/NginxProxyManager/docker-nginx-full.git
synced 2026-06-17 07:44:33 +00:00
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
20 lines
287 B
Nginx Configuration File
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;
|
|
}
|