我正试图加盐。当替换原始的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>
我们将不胜感激。
答案 0 :(得分:0)
您可以尝试使用:
我会避免使用:
否则,如果满足您的需要,也可以尝试不使用 ServerName 设置。