mirror of
https://github.com/YunoHost-Apps/ethercalc_ynh.git
synced 2024-09-03 18:26:36 +02:00
- add multisite feature
This commit is contained in:
parent
80b8d3875e
commit
6c47b6eb16
6 changed files with 35 additions and 23 deletions
|
@ -9,9 +9,9 @@
|
|||
# Short-Description: starts ethercalc
|
||||
# Description: starts ethercalc using start-stop-daemon
|
||||
### END INIT INFO
|
||||
app="ethercalc"
|
||||
|
||||
PATH="/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/opt/node/bin"
|
||||
LOGFILE="/var/log/$app/$app.log"
|
||||
LOGFILE="/var/log/ethercalc/YUNOLOG.log"
|
||||
EPLITE_DIR="/usr/local/bin"
|
||||
EPLITE_BIN="ethercalc"
|
||||
USER="www-data"
|
||||
|
@ -25,8 +25,8 @@ set -e
|
|||
|
||||
start() {
|
||||
echo "Starting $DESC... "
|
||||
|
||||
start-stop-daemon --start --chuid "$USER:$GROUP" --background --make-pidfile --pidfile /var/run/$NAME.pid --exec $EPLITE_DIR/$EPLITE_BIN -- $LOGFILE || true
|
||||
PORT=YUNOPORT
|
||||
start-stop-daemon --start --chuid "$USER:$GROUP" --background --make-pidfile --pidfile /var/run/$NAME.pid --exec $EPLITE_DIR/$EPLITE_BIN -- $LOGFILE --basepath YUNOPATH || true
|
||||
echo "done"
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
location PATHTOCHANGE/ {
|
||||
rewrite ^PATHTOCHANGE$ PATHTOCHANGE/ permanent;
|
||||
proxy_pass http://localhost:8000/;
|
||||
proxy_pass http://localhost:YUNOPORT/;
|
||||
proxy_set_header Host $host;
|
||||
proxy_buffering off;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
location / {
|
||||
proxy_pass http://localhost:8000/;
|
||||
proxy_pass http://localhost:YUNOPORT/;
|
||||
proxy_set_header Host $host;
|
||||
# be careful, this line doesn't override any proxy_buffering on set in a conf.d/file.conf
|
||||
proxy_buffering off;
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
"email": "valentin@grimaud.me",
|
||||
"url": "https://ethercalc.net/"
|
||||
},
|
||||
"multi_instance": "false",
|
||||
"multi_instance": "true",
|
||||
"arguments": {
|
||||
"install" : [
|
||||
{
|
||||
|
|
|
@ -1,51 +1,61 @@
|
|||
#!/bin/bash
|
||||
|
||||
app="ethercalc"
|
||||
|
||||
app_id_forked="ethercalc"
|
||||
app_id="ether"
|
||||
app_id+="calc"
|
||||
instance_number=$(echo $app_id_forked | sed 's/[^0-9]//g')
|
||||
# Retrieve arguments
|
||||
domain=$1
|
||||
path=$2
|
||||
is_public=$3
|
||||
port=$((instance_number+8000))
|
||||
|
||||
# Check domain/path availability
|
||||
sudo yunohost app checkurl $domain$path -a $app
|
||||
sudo yunohost app checkurl $domain$path -a $app_id_forked
|
||||
if [[ ! $? -eq 0 ]]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Save specific settings
|
||||
sudo yunohost app setting $app is_public -v $is_public
|
||||
sudo yunohost app setting $app_id_forked is_public -v $is_public
|
||||
|
||||
# Remove trailing "/" for next commands
|
||||
path=${path%/}
|
||||
|
||||
# Install dependances
|
||||
sudo apt-get install nodejs-legacy npm redis-server -y
|
||||
sudo npm i -g ethercalc
|
||||
#sudo npm i -g $app_id
|
||||
|
||||
# Copy files to the right place
|
||||
sudo cp ../conf/$app /etc/init.d/
|
||||
sudo chmod +x /etc/init.d/$app
|
||||
sudo update-rc.d $app defaults
|
||||
sudo mkdir /var/log/$app/
|
||||
sudo touch /var/log/$app/$app.log
|
||||
sudo chown www-data /var/log/$app/$app.log
|
||||
sed -i "s@YUNOPORT@$port@g" ../conf/$app_id
|
||||
sed -i "s@YUNOLOG@$app_id_forked@g" ../conf/$app_id
|
||||
sed -i "s@YUNOPATH@$path@g" ../conf/$app_id
|
||||
sudo cp ../conf/$app_id /etc/init.d/$app_id_forked
|
||||
sudo chmod +x /etc/init.d/$app_id_forked
|
||||
sudo update-rc.d $app_id_forked defaults
|
||||
if [ ! -d "/var/log/$app_id/" ]; then
|
||||
sudo mkdir /var/log/$app_id/
|
||||
fi
|
||||
sudo touch /var/log/$app_id/$app_id_forked.log
|
||||
sudo chown www-data /var/log/$app_id/$app_id_forked.log
|
||||
|
||||
# Modify Nginx configuration file and copy it to Nginx conf directory
|
||||
sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf*
|
||||
sed -i "s@ALIASTOCHANGE@$final_path/@g" ../conf/nginx.conf*
|
||||
sed -i "s@YUNOPORT@$port@g" ../conf/nginx.conf*
|
||||
if [ "$path" = "" ];
|
||||
then
|
||||
sudo cp ../conf/nginx.conf-nosub /etc/nginx/conf.d/$domain.d/$app.conf
|
||||
sudo cp ../conf/nginx.conf-nosub /etc/nginx/conf.d/$domain.d/$app_id_forked.conf
|
||||
else
|
||||
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
|
||||
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app_id_forked.conf
|
||||
fi
|
||||
|
||||
# Reload Nginx and regenerate SSOwat conf
|
||||
sudo service nginx reload
|
||||
if [ "$is_public" = "Yes" ];
|
||||
then
|
||||
sudo yunohost app setting $app skipped_uris -v "/"
|
||||
sudo yunohost app setting ethercalc skipped_regex -v "$final_path/.*"
|
||||
fi
|
||||
sudo service $app_id_forked stop
|
||||
sudo service $app_id_forked start
|
||||
sudo yunohost app ssowatconf
|
||||
sudo service $app start
|
||||
|
|
|
@ -1,11 +1,13 @@
|
|||
#!/bin/bash
|
||||
|
||||
app="ethercalc"
|
||||
name="ether"
|
||||
name+="calc"
|
||||
|
||||
domain=$(sudo yunohost app setting $app domain)
|
||||
|
||||
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
|
||||
sudo rm -Rf /var/log/$app/
|
||||
sudo rm -Rf /var/log/$name/$app
|
||||
sudo update-rc.d $app remove
|
||||
sudo service $app stop
|
||||
sudo rm /etc/init.d/$app
|
||||
|
|
Loading…
Reference in a new issue