Project

General

Profile

Install » History » Revision 2

Revision 1 (Viacheslav Anzhiganov, 11/26/2025 02:32 PM) → Revision 2/3 (Viacheslav Anzhiganov, 11/26/2025 02:36 PM)

# Install 

 ```shell 
 dnf install -y epel-release 
 dnf install -y nginx supervisor 
 ``` 


 ```shell 
 systemctl enable supervisord 
 systemctl start supervisord 
 ``` 

 ## supervisor config 

 ```shell 
 vi /etc/supervisord.d/domainparking.ini 
 ``` 

 ```init 
 [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 
 ``` 
 


Redmine Appliance - Powered by TurnKey Linux