mirror of
https://github.com/zulip/zulip.git
synced 2025-11-14 10:57:58 +00:00
The humbughq.com name hasn't been the product's name since 2013, and it's nice to finish clearing it out of the repository.
24 lines
579 B
Plaintext
24 lines
579 B
Plaintext
include /etc/nginx/zulip-include/upstreams;
|
|
|
|
server {
|
|
listen 443;
|
|
|
|
ssl on;
|
|
|
|
ssl_certificate /etc/ssl/certs/wildcard-zulipchat.com.combined-chain.crt;
|
|
ssl_certificate_key /etc/ssl/private/wildcard-zulipchat.com.key;
|
|
|
|
# We don't actually have an SSL cert for zulipchat.com on this
|
|
# machine, but that's okay since clients will never be accessing
|
|
# this host directly.
|
|
server_name zulipchat.com;
|
|
|
|
# Downloadable software
|
|
location /dist/ {
|
|
autoindex on;
|
|
alias /srv/www/dist/;
|
|
}
|
|
|
|
include /etc/nginx/zulip-include/app;
|
|
}
|