Installation
Table of Contents
1. Vorarbeiten
Wen etwas von den Standardwerten abweichen soll, dann müssen die Umgebungsvariablen in der ~/.bashrc
hinzugefügt/angepasst werden.
export IM_NAME=image-modification # optional
export IM_PORT=9003 # optional
und mit dem folgenden Kommando aktualisieren
source ~/.bashrc
2. Installation aus den Quellen
mkdir -p ~/projects && cd ~/projects
git clone git@bitbucket.org:locr/phpimagemodificationserver.git PhpImageModificationServer
cd PhpImageModificationServer
git submodule update --init --recursive
4. Update script im home-Verzeichnis erstellen
cat <<EOF >~/update_image_modification.sh
#!/usr/bin/env bash
cd ${PWD}/scripts
./update_service.sh
EOF
chmod +x ~/update_image_modification.sh
5. nginx konfigurieren
sudo cp installation_files/nginx/conf.d/image_modification /etc/nginx/conf.d
Sicherstellen, dass die folgenden Zeilen in der Datei /etc/nginx/sites-enabled/default
existieren.
server {
...
include conf.d/image_modification;
...
}
nginx service neustarten
sudo service nginx restart