我试图盐librenms。替换原始librenms配置文件时,我希望ServerName是FQDN而不是IP地址。 network.get_fqdn也返回IP地址。
{%- from "librenms/map.jinja" import librenms with context -%}
<VirtualHost *:80>
DocumentRoot /opt/librenms/html/
ServerName {{ network.get_fqdn }}
# ServerName {{ grains['ipv4'][0] }}
AllowEncodedSlashes NoDecode
<Directory "/opt/librenms/html/">
Require all granted
AllowOverride All
Options FollowSymLinks MultiViews
</Directory>
</VirtualHost>
帮助将不胜感激。
您可以尝试使用:
我会避免使用:
否则,如果它符合您的需要,您也可以尝试不使用ServerName设置。