Fixed nginx call to uwsgi

This commit is contained in:
Spitap
2022-07-26 16:53:24 +02:00
parent e7b6104195
commit 4a7222bd24

View File

@@ -26,7 +26,7 @@ class Nginx(base.Installer):
"app_instance_path": ( "app_instance_path": (
self.config.get(app, "instance_path")), self.config.get(app, "instance_path")),
"uwsgi_socket_path": ( "uwsgi_socket_path": (
Uwsgi(self.config, self.upgrade).get_socket_path(app)) Uwsgi(self.config, self.upgrade, self.restore).get_socket_path(app))
}) })
return context return context