switch uvicorn and nginx to communicate via unix socket instead of tcp

This commit is contained in:
Lukas Wingerberg
2023-10-22 13:05:03 +02:00
parent 8015558398
commit db282479b0
4 changed files with 12 additions and 8 deletions

View File

@@ -1,13 +1,13 @@
#!/bin/bash
# Run migrations and start uvicorn
#/init_back &
/init_back &
# Start nginx
/init_front &
# Start rq worker
#/init_worker &
/init_worker &
# Wait for any process to exit
wait -n