コンテキストとしては、専用のメトリックをいくつか持つことができるように Docker コンテナ内で静的 Web サイトを提供し、ログで stdout/stderr を使用するようにしたいということです。
それを実現するために、私は Alpine イメージで Lighttpd を使用することを考えました。
ヒントを見つけたここここで stdout へのリンクを作成しますが、リンクを作成した後に権限が変更され、lighttpd は access.log への書き込みを停止します。
server.username
lighttpd.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"
?