Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/agroviva/cao
CAO-Faktura 1.5 Schnittstelle für EGroupware
https://github.com/agroviva/cao
Last synced: 3 days ago
JSON representation
CAO-Faktura 1.5 Schnittstelle für EGroupware
- Host: GitHub
- URL: https://github.com/agroviva/cao
- Owner: agroviva
- Created: 2021-10-27T09:06:16.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-02T10:30:15.000Z (9 months ago)
- Last Synced: 2024-04-03T10:55:27.808Z (9 months ago)
- Language: PHP
- Size: 426 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CAO-Faktura 1.5 Schnittstelle für EGroupware
# Clone Github Repository
```$``` ```git clone https://github.com/agroviva/cao```
# Install SSH2 Extension
```$``` ```sudo apt-get install php7.0-ssh2```
# Nginx Configuration
```
location /egroupware/cao/graph {
alias /usr/share/egroupware/cao/graph;
try_files $uri $uri/ @caograph;location ~ \index.php$ {
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $request_filename;
fastcgi_pass $egroupware:9000;
}
}location @caograph {
rewrite /graph/(.*)$ /egroupware/cao/graph/index.php?/$1 last;
}
```