mirror of
https://github.com/zulip/zulip.git
synced 2026-07-12 21:04:41 +08:00
The old "zulip_internal" name was from back when Zulip, Inc. had two distributions of Zulip, the enterprise distribution in puppet/zulip/ and the "internal" SAAS distribution in puppet/zulip_internal. I think the name is a bit confusing in the new fully open-source Zulip work, so we're replacing it with "zulip_ops". I don't think the new name is perfect, but it's better. In the following commits, we'll delete a bunch of pieces of Zulip, Inc.'s infrastructure that don't exist anymore and thus are no longer useful (e.g. the old Trac configuration), with the goal of cleaning the repository of as much unnecessary content as possible.
27 lines
809 B
Plaintext
27 lines
809 B
Plaintext
# 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
|
|
# This is also true if you have upgraded from before 2.2.9-3 (i.e. from
|
|
# Debian etch). See /usr/share/doc/apache2.2-common/NEWS.Debian.gz and
|
|
# README.Debian.gz
|
|
|
|
NameVirtualHost *:80
|
|
Listen 80
|
|
|
|
<IfModule mod_ssl.c>
|
|
# If you add NameVirtualHost *:443 here, you will also have to change
|
|
# the VirtualHost statement in /etc/apache2/sites-available/default-ssl
|
|
# to <VirtualHost *:443>
|
|
# Server Name Indication for SSL named virtual hosts is currently not
|
|
# supported by MSIE on Windows XP.
|
|
|
|
# This line added by Zulip.
|
|
NameVirtualHost *:443
|
|
|
|
Listen 443
|
|
</IfModule>
|
|
|
|
<IfModule mod_gnutls.c>
|
|
Listen 443
|
|
</IfModule>
|