Lighttpd Alpine 容器日志记录

Lighttpd Alpine 容器日志记录

背景是,我想在 Docker 容器内提供一个静态网站,这样我就可以拥有一些专用的指标,并且我希望日志使用 stdout/stderr。

为了做到这一点,我想到使用带有 Alpine 图像的 Lighttpd。

我找到了一个提示这里我们创建了一个到 stdout 的链接,但是创建链接后权限发生了变化,lighttpd 停止写入 access.log。

我尝试将server.usernamelighttpd.conf 更改为“root”,但它拒绝这样做,并说“ (server.c.1330)我不会将 uid 设置为 0

我尝试在创建链接后更改 access.log 权限,但没有成功。

有没有办法配置 lighttpd 以使用 stdout/stderr?

我目前的配置:

var.basedir  = "/var/www/localhost"
var.logdir   = "/var/log/lighttpd"
var.statedir = "/var/lib/lighttpd"

server.modules   = ( "mod_access",
                     "mod_setenv",
                     "mod_rewrite",
                     "mod_redirect",
                     "mod_status",
                     "mod_simple_vhost",
                     "mod_evhost",
                     "mod_alias",
                     "mod_userdir",
                     "mod_secdownload",
                     "mod_fastcgi",
                     "mod_proxy",
                     "mod_cgi",
                     "mod_ssi",
                     "mod_compress",
                     "mod_usertrack",
                     "mod_expire",
                     "mod_rrdtool",
                     "mod_accesslog" )

include "mime-types.conf"

server.errorlog   = "/var/log/lighttpd/error.log"
server.pid-file      = "/var/run/lighttpd.pid"

server.username             = "lighttpd"
server.groupname            = "wheel"

server.document-root = var.basedir + "/htdocs"

static-file.exclude-extensions = (".php", ".pl", ".cgi", ".fcgi")

url.access-deny = ("~", ".inc")

accesslog.filename = "/var/log/lighttpd/access.log"
index-file.names            = ( "index.php", "index.html", "index.lighttpd.html" )

我当前的Dockerfile:

FROM alpine:3.12

RUN adduser -S lighttpd -G wheel
RUN apk update --no-cache
RUN apk add  --update --no-cache \
    lighttpd=1.4.55-r1

COPY ./static /var/www/localhost/htdocs/
COPY lighttpd/* /etc/lighttpd/

RUN ln -sf /dev/stdout /var/log/lighttpd/access.log \
   && ln -sf /dev/stderr /var/log/lighttpd/error.log

EXPOSE 80 443

ENTRYPOINT ["/usr/sbin/lighttpd", "-D", "-f", "/etc/lighttpd/lighttpd.conf"]

答案1

如果注释掉server.errorlog,lighttpd 将记录到 stderr。

如果accesslog.filename = "/dev/stdout"不起作用,那么您是否尝试过设置accesslog.filename = "/proc/self/fd/1"

相关内容