我可以在 httpd.conf 中使用 shell 中的主机名等环境变量吗?
我试图让所有网络服务器将日志写入共享存储系统。我想使用系统环境变量,这样我就不必维护 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我注意到这一点是因为我正在使用 |通过旋转日志我应该尝试 $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 :)