User Tools

Site Tools


software:openproject

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

software:openproject [2020/07/12 19:11] – created wikiadminsoftware:openproject [2022/04/26 14:19] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +====== 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 & 
 +
 +
 +
 +
 +