Actions
Install » History » Revision 2
« Previous |
Revision 2/3
(diff)
| Next »
Viacheslav Anzhiganov, 11/26/2025 02:36 PM
Install¶
dnf install -y epel-release
dnf install -y nginx supervisor
systemctl enable supervisord
systemctl start supervisord
supervisor config¶
vi /etc/supervisord.d/domainparking.ini
[program:domainparking]
command = /opt/parking/.venv/bin/uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
directory = /opt/parking
# user = www
autostart=true
Updated by Viacheslav Anzhiganov 10 days ago · 2 revisions