90DaysOfDevOps/2022/Days/Configmgmt/ansible-scenario2/templates/ports.conf.j2
2022-11-18 14:43:39 +00:00

17 lines
374 B
Django/Jinja

# If you just change the port or add more ports here, you will likely also
# have to change the VirtualHost statement in
# /etc/apache2/sites-enabled/000-default.conf
Listen {{ http_port }}
<IfModule ssl_module>
Listen {{ https_port }}
</IfModule>
<IfModule mod_gnutls.c>
Listen {{ https_port }}
</IfModule>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet