17 lines
512 B
Django/Jinja
17 lines
512 B
Django/Jinja
#
|
|
# ServerName gives the name and port that the server uses to identify itself.
|
|
# This can often be determined automatically, but we recommend you specify
|
|
# it explicitly to prevent problems during startup.
|
|
#
|
|
# If your host doesn't have a registered DNS name, enter its IP address here.
|
|
#
|
|
{% if apache_server_name is defined %}
|
|
ServerName {{ apache_server_name }}
|
|
{% else %}
|
|
#ServerName www.example.com:80
|
|
{% endif %}
|
|
{% if apache_server_tokens is defined %}
|
|
|
|
ServerTokens {{ apache_server_tokens }}
|
|
{% endif %}
|