Raphael Maenle
15e68b88e8
- uses existing wsgi.py file - adds wsgi.ini file - sets socket - defines application to be run, which it gets from wsgi.py file - uses http communication to nginx server - some random number of workers - updates Dockerfile and docker-entrypoint
6 lines
88 B
Bash
Executable File
6 lines
88 B
Bash
Executable File
#!/bin/sh
|
|
cd /home/calendarwatch
|
|
uwsgi --ini wsgi.ini
|
|
echo "server has been started"
|
|
|