We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18cf9b8 commit 538bdcbCopy full SHA for 538bdcb
CHANGELOG.md
@@ -2,6 +2,9 @@
2
3
## untagged
4
5
+- Limit the bind for the HTTPS server on 8443 to 127.0.0.1
6
+ ([#522](https://github.com/chatmail/server/pull/522))
7
+
8
- Pass through `original_content` instead of `content` in filtermail
9
([#509](https://github.com/chatmail/server/pull/509))
10
cmdeploy/src/cmdeploy/nginx/nginx.conf.j2
@@ -117,10 +117,7 @@ http {
117
118
# Redirect www. to non-www
119
server {
120
- listen 8443 ssl;
121
- {% if not disable_ipv6 %}
122
- listen [::]:8443 ssl;
123
- {% endif %}
+ listen 127.0.0.1:8443 ssl;
124
server_name www.{{ config.domain_name }};
125
return 301 $scheme://{{ config.domain_name }}$request_uri;
126
access_log syslog:server=unix:/dev/log,facility=local7;
0 commit comments