An open API service indexing awesome lists of open source software.

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.

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.