Active Collab (corporate) - управление проектами
Active Collab helps your team stay organized when you outgrow email. But it’s so much more than that — with plenty of neat add-ons, it’s a one-stop solution for all your business needs.
AсtiveCollab installer 5.13.133
How-to null:
Install updates manually
For PHAR update you need: Phar decompress:
or
NGINX config (Android OS tested)
Active Collab helps your team stay organized when you outgrow email. But it’s so much more than that — with plenty of neat add-ons, it’s a one-stop solution for all your business needs.
AсtiveCollab installer 5.13.133
View hidden content is available for registered users!
How-to null:
View hidden content is available for registered users!
Install updates manually
View hidden content is available for registered users!
For PHAR update you need: Phar decompress:
Code:
phar extract -f %some phar file%
Code:
php -r '$phar = new Phar("phar-file.phar"); $phar->extractTo("./directory");'
NGINX config (Android OS tested)
NGINX:
server {
listen 80;
listen [::]:80;
server_name ac.server.com;
root /var/www/ac.server.com/public;
index router.php
access_log /var/log/nginx/activecollab-access.log;
error_log /var/log/nginx/activecollab-error.log;
ssi on;
client_max_body_size 32m;
include /etc/nginx/default.d/*.conf;
if (!-e $request_filename) {
rewrite ^/assets/(.*)$ /assets/$1 last;
rewrite ^/avatars/(.*)$ /avatars/$1 last;
rewrite ^/wallpapers/(.*)$ /wallpapers/$1 last;
rewrite ^/verify-existence$ /verify.php last;
rewrite ^/proxy.php$ /proxy.php last;
rewrite ^/api/v([0-9]*)/(.*)$ /api.php?path_info=$2&api_version$
rewrite ^$ /router.php last;
rewrite ^(.*) /router.php?path_info=$1 last;
}
}
Last edited by a moderator: