我可以在 httpd.conf 中使用 shell 中的主机名等环​​境变量吗?

发布于 2024-10-07 19:16:27 字数 471 浏览 4 评论 0原文

我试图让所有网络服务器将日志写入共享存储系统。我想使用系统环境变量,这样我就不必维护 20 多个 httpd.conf 文件。我的 httpd.conf 文件是我的部署的一部分,我们这样做是为了如果我们需要更改某些内容,所有主机都会得到该更改。

我想做的是这样的:

ErrorLog "|/usr/local/apache2/bin/rotatelogs /data/logs/apache/${hostname}_error_log.%Y-%m-%d 86400"

其中主机名与 shell 命令返回的内容相同,例如:

[email protected] @01:47:17:~ $>主机名 服务器1.域

I am trying to have all my webservers write their logs to a shared storage system. I'd like to use a system environment variable so that I don't have to maintain 20+ httpd.conf files. My httpd.conf files are part of my deployment, we do this so that if we need to change something all hosts get that change.

What I'd like to do is something like this:

ErrorLog "|/usr/local/apache2/bin/rotatelogs /data/logs/apache/${hostname}_error_log.%Y-%m-%d 86400"

where hostname is the same thing returned by the shell command, eg:

[email protected]@01:47:17:~ $> hostname
server1.domain

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故事与诗 2024-10-14 19:16:28

我注意到这一点是因为我正在使用 |通过旋转日志我应该尝试 $HOSTNAME 和 whuduya 知道。

ErrorLog“|/usr/local/apache2/bin/rotatelogs /data/logs/apache/$HOSTNAME.error_log.%Y-%m-%d 86400”

效果很好:)

I noticed that because I am using the | through to rotatelogs I should try $HOSTNAME and whuduya know.

ErrorLog "|/usr/local/apache2/bin/rotatelogs /data/logs/apache/$HOSTNAME.error_log.%Y-%m-%d 86400"

works great :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文