diff --git a/backend-services/feed-service/conf/application.conf b/backend-services/feed-service/conf/application.conf
index 9d3697fda5e7b0fe38d862498d1901870c20fc22..47f205af9bc329308100c411317ec4eeae59ca7d 100644
--- a/backend-services/feed-service/conf/application.conf
+++ b/backend-services/feed-service/conf/application.conf
@@ -32,6 +32,9 @@ play.filters.enabled += play.filters.cors.CORSFilter
 # play.filters.cors.allowedOrigins = ["localhost:9000"]
 # play.filters.cors.allowedHttpMethods = ["GET", "POST"]
 
+# Allow incoming requests from any host
+play.filters.hosts.allowed = ["*"]
+
 # Use a custom error handler to not return HTML views
 play.http.errorHandler = "models.CustomErrorHandler"