User Tools

Site Tools


software:openproject

Open Project Notes July 2020

For the wifi server installation and operations

cat /root/start_openproject_service.sh #!/bin/bash /usr/bin/openproject run worker & /usr/bin/openproject run web &

cat /etc/apache2/sites-enabled/openproject.conf Include /etc/openproject/addons/apache2/includes/server/*.conf

<VirtualHost *:443>

ServerName atrc.mywire.org
DocumentRoot /opt/openproject/public
ProxyRequests off
Include /etc/openproject/addons/apache2/includes/vhost/*.conf

# Can't use Location block since it would overshadow all the other proxypass directives on CentOS
ProxyPass /openproject/ http://127.0.0.1:6000/openproject/ retry=0
ProxyPassReverse /openproject/ http://127.0.0.1:6000/openproject/

</VirtualHost>

To backup make sure these directories are inlcuded.

/etc for the configuration of apache

/opt/openproject for the application

/var/db/openproject for data

/root/scripts/ for muftasoft's starting script which is run in rc.local /root/scripts/start_openproject_service.sh

entry in rc.local is /root/scripts/start_openproject_service.sh &

software/openproject.txt · Last modified: 2022/04/26 14:19 by 127.0.0.1