Quellcode durchsuchen

Use a unix socket for uwsgi

Getty Ritter vor 4 Jahren
Ursprung
Commit
bcddfaf4e6
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      tasks.py

+ 2 - 2
tasks.py

@@ -50,6 +50,6 @@ def tc(c):
 
 
 @task
-def uwsgi(c, port=9898):
+def uwsgi(c, sock="lc.sock"):
     """Run a uwsgi server"""
-    c.run(f"poetry run uwsgi --socket {port} --module lament-configuration:app --processes 4 --threads 2")
+    c.run(f"poetry run uwsgi --socket {sock} --module lament-configuration:app --processes 4 --threads 2")