mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-04 01:37:34 -08:00
Start from commit
60736e686a
'resty.core' is now mandatorily loaded, and the 'lua_load_resty_core'
directive is deprecated. See also https://github.com/openresty/lua-nginx-module/pull/1501
If nginx is built with USE="nginx_modules_http_lua", there must have
resty.core (OpenResty or a module named 'resty') exist, otherwise nginx
will fail to start w/ messages like bellow:
nginx: [alert] failed to load the 'resty.core' module (https://github.com/openresty/lua-resty-core); ensure you are using an OpenResty release from https://openresty.org/en/download.html (reason: module 'resty.core' not found:
no field package.preload['resty.core']
no file './resty/core.lua'
no file '/usr/share/luajit-2.1.0-beta3/resty/core.lua'
no file '/usr/local/share/lua/5.1/resty/core.lua'
no file '/usr/local/share/lua/5.1/resty/core/init.lua'
no file '/usr/share/lua/5.1/resty/core.lua'
no file '/usr/share/lua/5.1/resty/core/init.lua'
no file './resty/core.so'
no file '/usr/local/lib/lua/5.1/resty/core.so'
no file '/usr/lib64/lua/5.1/resty/core.so'
no file '/usr/local/lib/lua/5.1/loadall.so'
no file './resty.so'
no file '/usr/local/lib/lua/5.1/resty.so'
no file '/usr/lib64/lua/5.1/resty.so'
no file '/usr/local/lib/lua/5.1/loadall.so') in /etc/nginx/nginx.conf:47
Closes: https://bugs.gentoo.org/726728
Signed-off-by: Z. Liu <zhixu.liu@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/39823
Signed-off-by: Sam James <sam@gentoo.org>
73 lines
1.3 KiB
Plaintext
73 lines
1.3 KiB
Plaintext
user nginx nginx;
|
|
worker_processes 1;
|
|
|
|
error_log /var/log/nginx/error_log info;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
use epoll;
|
|
}
|
|
|
|
http {
|
|
include /etc/nginx/mime.types.nginx;
|
|
types_hash_max_size 4096;
|
|
default_type application/octet-stream;
|
|
|
|
log_format main
|
|
'$remote_addr - $remote_user [$time_local] '
|
|
'"$request" $status $bytes_sent '
|
|
'"$http_referer" "$http_user_agent" '
|
|
'"$gzip_ratio"';
|
|
|
|
client_header_timeout 10m;
|
|
client_body_timeout 10m;
|
|
send_timeout 10m;
|
|
|
|
connection_pool_size 256;
|
|
client_header_buffer_size 1k;
|
|
large_client_header_buffers 4 2k;
|
|
request_pool_size 4k;
|
|
|
|
gzip off;
|
|
|
|
output_buffers 1 32k;
|
|
postpone_output 1460;
|
|
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
tcp_nodelay on;
|
|
|
|
keepalive_timeout 75 20;
|
|
|
|
ignore_invalid_headers on;
|
|
|
|
index index.html;
|
|
|
|
server {
|
|
listen 127.0.0.1;
|
|
server_name localhost;
|
|
|
|
access_log /var/log/nginx/localhost.access_log main;
|
|
error_log /var/log/nginx/localhost.error_log info;
|
|
|
|
root /var/www/localhost/htdocs;
|
|
}
|
|
|
|
# SSL example
|
|
#server {
|
|
# listen 127.0.0.1:443;
|
|
# server_name localhost;
|
|
|
|
# ssl on;
|
|
# ssl_certificate /etc/ssl/nginx/nginx.pem;
|
|
# ssl_certificate_key /etc/ssl/nginx/nginx.key;
|
|
|
|
# access_log /var/log/nginx/localhost.ssl_access_log main;
|
|
# error_log /var/log/nginx/localhost.ssl_error_log info;
|
|
|
|
# root /var/www/localhost/htdocs;
|
|
#}
|
|
|
|
include /etc/nginx/*_vhost.conf;
|
|
}
|