Max2Play Home › Forums › Max2Play Development (Ideas, Wishes) › COPS (Calibre OPDS PHP Webserver) -Installation › Reply To: COPS (Calibre OPDS PHP Webserver) -Installation
13. September 2017 at 15:29
#31311
Hallo,
du kannst COPS auch mit dem Apache nutzen. Wenn du die Installationsschritte von https://github.com/seblucas/cops durchführst, sollte das funktionieren. Mit den folgenden Befehlen solltest du unter Max2Play die Installation des Webinterface von COPS hinbekommen (copy & paste in Shell Console):
# Verzeichnis Cops für den Webserver erreichbar machen
cd /var/www
sudo apt-get update && apt-get install php5-gd php5-sqlite php5-json php5-intl -y
sudo wget https://github.com/seblucas/cops/releases/download/1.1.1/cops-1.1.1.zip -O cops.zip
sudo unzip cops.zip -d /var/www/cops
# Apache Konfigurieren, damit dieser unter Port 90 das Cops Webinterface lädt - URL ist dann http://max2play:90
echo -e "Listen 90\n<VirtualHost *:90>\nDocumentRoot /var/www/cops\n<Directory /var/www/cops>\nOptions Indexes FollowSymLinks\nAllowOverride ALL\n</Directory>\nErrorLog /dev/null\nCustomLog /dev/null common\n</VirtualHost>" | sudo tee /etc/apache2/sites-enabled/cops.conf
sudo /etc/init.d/apache2 restart
Nach diesen Schritten ist das Webinterface von Cops unter http://max2play:90 erreichbar. Du musst dann allerdings noch die Datenbank einrichten und die Konfiguration abschließen.
Viele Grüße
Stefan