Infrastructure Management
Use of systemd for Managing Services and Ensuring High Availability
sudo nano /etc/systemd/system/mydjango.service[Unit]
Description=My Django App
[Service]
User=yourusername
WorkingDirectory=/path/to/your/django/app
ExecStart=/path/to/your/venv/bin/python3 manage.py runsslserver 0.0.0.0:8000
Restart=on-failure
StandardOutput=file:/path/to/mydjango.log
StandardError=file:/path/to/mydjango.log
[Install]
WantedBy=multi-user.targetAttempted Containerization with Docker

Exploration of Using Postfix for Email Services with Custom Domain Name
Last updated