mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-01-10 23:27:23 +07:00
17 lines
374 B
Django/Jinja
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
|