diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 382b4cf779a22b76f216d86cbbc85ed45e7cec50..72cc9090bcd5e97cf49696055450c6fa382b6774 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -6,6 +6,14 @@ All notable changes to this project will be documented in this file.
 The format is based on `Keep a Changelog`_,
 and this project adheres to `Semantic Versioning`_.
 
+Unreleased
+----------
+
+Added
+~~~~~
+
+* Allow to configure port for prometheus metrics endpoint.
+
 `2.0rc3`_ - 2021-07-26
 ----------------------
 
diff --git a/aleksis/core/settings.py b/aleksis/core/settings.py
index 50188498f928331f3a86d705c6ec0813ebb04103..faa5bcf1da53c97bd878c33bced3e9e2a6e384a8 100644
--- a/aleksis/core/settings.py
+++ b/aleksis/core/settings.py
@@ -821,6 +821,8 @@ DBBACKUP_CHECK_SECONDS = _settings.get("backup.database.check_seconds", 7200)
 MEDIABACKUP_CHECK_SECONDS = _settings.get("backup.media.check_seconds", 7200)
 
 PROMETHEUS_EXPORT_MIGRATIONS = False
+PROMETHEUS_METRICS_EXPORT_PORT = _settings.get("prometheus.metrics.port", None)
+PROMETHEUS_METRICS_EXPORT_ADDRESS = _settings.get("prometheus.metrucs.address", None)
 
 SECURE_PROXY_SSL_HEADER = ("REQUEST_SCHEME", "https")