diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-06-30 16:38:53 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-06-30 16:38:53 +0800 |
commit | f1e4ab71328243013f2816b7ed072c575937a353 (patch) | |
tree | 9295738b7670ea8e43f4f94ba09181f7b4f53f36 | |
parent | a43b18656443da917787d329051292bc38607b56 (diff) | |
download | crupest-f1e4ab71328243013f2816b7ed072c575937a353.tar.gz crupest-f1e4ab71328243013f2816b7ed072c575937a353.tar.bz2 crupest-f1e4ab71328243013f2816b7ed072c575937a353.zip |
mail: fix a var name.
-rw-r--r-- | services/templates/nginx/mail.conf.template | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/templates/nginx/mail.conf.template b/services/templates/nginx/mail.conf.template index ebb9f46..1c2a2ca 100644 --- a/services/templates/nginx/mail.conf.template +++ b/services/templates/nginx/mail.conf.template @@ -6,9 +6,9 @@ server { root /srv/mail; } - location = /@@CRUPEST_MAIL_SERVER_MAILEROO_INBOUND_PATH@@ { + location = /@@CRUPEST_MAIL_SERVER_AWS_INBOUND_PATH@@ { include conf.d/common/reverse-proxy; - proxy_pass http://mail-server:2345/@@CRUPEST_MAIL_SERVER_MAILEROO_INBOUND_PATH@@; + proxy_pass http://mail-server:2345/@@CRUPEST_MAIL_SERVER_AWS_INBOUND_PATH@@; } location / { |