如何在Alpine linux上为nginx添加Lua模块?

时间:2017-11-18 12:41:34

标签: docker nginx lua alpine

我希望在启用了Lua模块的情况下为nginx提供精简的Docker镜像。如何基于Alpine linux创建它?

4 个答案:

答案 0 :(得分:10)

这是Dockerfile

FROM alpine:3.6

RUN apk add --no-cache nginx-mod-http-lua

# Delete default config
RUN rm -r /etc/nginx/conf.d && rm /etc/nginx/nginx.conf

# Create folder for PID file
RUN mkdir -p /run/nginx

# Add our nginx conf
COPY ./nginx.conf /etc/nginx/nginx.conf

CMD ["nginx"]

安装nginx-mod-http-lua软件包还会安装nginxluajit等。

nginx.conf至少应包含以下内容:

load_module /usr/lib/nginx/modules/ndk_http_module.so;
load_module /usr/lib/nginx/modules/ngx_http_lua_module.so;

pcre_jit on;

events {
  worker_connections 1024;
}

daemon off;

答案 1 :(得分:0)

我们使用Openresty,一个集成了nginx和Lua的平台。

在默认的nginx文件中,你可以这样调用Lua:

server {
    listen 80;
    listen 443 ssl; # 'ssl' parameter tells NGINX to decrypt the traffic

    # 1
    location ~ /api/(.*) {
        resolver xxx.x.x.xx;

    rewrite_by_lua_block {
        ngx.req.set_header("x-header", "12345678901234567")

    }
}

这里的高山图片:https://github.com/openresty/docker-openresty/tree/master/

还有一种含有makegit和其他库的高山脂肪,可以帮助您在Docker镜像中构建。

答案 2 :(得分:0)

Dockerfile:

FROM nginx:alpine
RUN  mkdir -p /run/nginx
RUN  apk add --no-cache nginx-mod-http-lua
COPY nginx_conf/ /etc/nginx/ # Your nginx conf
COPY lua/ /etc/lua/          # Your lua files 

nginx conf的第一行:

load_module /usr/lib/nginx/modules/ndk_http_module.so;
load_module /usr/lib/nginx/modules/ngx_http_lua_module.so;
pcre_jit on;

答案 3 :(得分:-1)

你看看Docker Hub

https://hub.docker.com/

你会发现一个基于Alpine Linux的Nginx图像,带有Lua支持

一些例子

https://hub.docker.com/r/ilagnev/alpine-nginx-lua/

https://hub.docker.com/r/firesh/nginx-lua/

查看Dockerfile以获取更多详细信息