
- nginx - proxy_pass on port 5000 - static available at url "xxxx/static/<file> - djangoserver - just a program with infinite while for test docker-compose Nginx and Djangoserv containers linked with the folder at "/var/wwww/djangoserver"
5 lines
63 B
Python
5 lines
63 B
Python
import time
|
|
|
|
while True:
|
|
print("Update")
|
|
time.sleep(20) |