Projekt Buchserver
Links
- How to turn a Raspberry Pi into an eBook server
The Calibre eBook management software makes it easy to set up an eBook server on a Raspberry Pi 3, even in low-connectivity areas.
- http://librarybox.us/
LibraryBox is an open source, portable digital file distribution tool based on inexpensive hardware that enables delivery of educational, healthcare, and other vital information to individuals off the grid.
- COPS : Calibre OPDS (and HTML) PHP Server
- BicBucStriim BicBucStriim ist eine Web-Anwendung, die eine digitale Büchersammlung im Calibre-Format publiziert und für mobile Geräte bequem zugänglich macht.
- Biblionetz:t20306 c't 1/2018 Digitales Bücherregal - E-Books auf allen Geräten im Netzwerk bequem durchsuchen, lesen und herunterladen
t20306
Installation Bitbucstriim-Server
Listen 8081
<VirtualHost *:8081>
DocumentRoot "/direct-usb/fvdw/addons/bbs/"
ServerName platte
<Directory "/direct-usb/fvdw/addons/bbs/">
DirectoryIndex index.php
AllowOverride All
Options -Indexes +FollowSymLinks
</Directory>
ErrorLog /direct-usb/fvdw/addons/bbs_error_log
CustomLog /direct-usb/fvdw/addons/bbs_access_log common
</VirtualHost>
Wenn der Server eine eigene IP hat, kann er auch auf Port 80 laufen:
# BitBuukStriim-Server auf 192.168.1.5 (buechergestell)
Listen 192.168.1.5:80
<VirtualHost 192.168.1.5:80>
DocumentRoot "/direct-usb/fvdw/addons/bbs/"
ServerName buechergestell
<Directory "/direct-usb/fvdw/addons/bbs/">
DirectoryIndex index.php
AllowOverride All
Options -Indexes +FollowSymLinks
</Directory>
ErrorLog /direct-usb/fvdw/addons/bbs_error_log
CustomLog /direct-usb/fvdw/addons/bbs_access_log common
</VirtualHost>
Webserver neu starten:
/usr/bin/httpd -f httpd.conf -d /etc -k graceful
Im lokalen Netz erreichbar unter
http://buechergestell