diff --git a/daemons/management/commands/notification_manager.py b/daemons/management/commands/notification_manager.py index 2c45a52..de9f6ec 100644 --- a/daemons/management/commands/notification_manager.py +++ b/daemons/management/commands/notification_manager.py @@ -5,7 +5,7 @@ from SprintLib.queue import MessagingSupport, send_to_queue class Command(MessagingSupport): - help = "starts file notification manager" + help = "starts notification manager" queue_name = "notification" def handle_solution(self, payload): diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 3e89ac9..affb6ed 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -9,6 +9,10 @@ http { proxy_pass http://rabbitmq:15672/; } + location /cluster/ { + proxy_pass http://127.0.0.1:888/; + } + location /checker/ { proxy_pass http://checker:7999/checker/; }