https://github.com/coderbyheart/aerofs-web
Simple web frontend for AeroFS written in Python to enable users to invite themself to a shared folder.
https://github.com/coderbyheart/aerofs-web
Last synced: 5 months ago
JSON representation
Simple web frontend for AeroFS written in Python to enable users to invite themself to a shared folder.
- Host: GitHub
- URL: https://github.com/coderbyheart/aerofs-web
- Owner: coderbyheart
- License: mit
- Created: 2012-08-17T09:02:15.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-08-17T09:39:40.000Z (over 13 years ago)
- Last Synced: 2025-03-27T05:44:05.297Z (9 months ago)
- Language: JavaScript
- Size: 97.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AeroFS Web Frontend
Ein Webfrontend für AeroFS mit dem sich Teilnehmer selber in einen shared Folder einladen können.
## Links
* Hier läuft eine Instanz der Anwendung: http://aerofs.studium.coderbyheart.de/
## Setup
### Konfiguration
Die Datei `config.ini.dist` nach `config.ini` kopieren und anpassen.
### Installation der Dependencies
make
## Dev-Server starten
source VIRTUALENV/bin/activate
VIRTUALENV/bin/python2 VIRTUALENV/bin/bottle.py --debug --reload app:app
## Integration mit Apache
Dies ist eine Beispiel-Konfiguration für einen virtuellen Host:
ServerName
ServerAdmin hosting@coderbyheart.de
UseCanonicalName Off
DocumentRoot /srv/www//
/>
AllowOverride All
Options -Indexes FollowSymLinks
DirectoryIndex index.php index.html
Order allow,deny
Allow from all
CustomLog /srv/www//logs/access_log combined
ErrorLog /srv/www//logs/error_log
WSGIDaemonProcess aerofsweb user= group= processes=1 threads=5
WSGIScriptAlias / /srv/www//adapter.wsgi
Anschließend muss noch die `adapter.wsgi` angepasst werden.