2013-11-29 12:49:27 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Retrieve arguments
|
|
|
|
domain=$1
|
|
|
|
path=$2
|
|
|
|
|
|
|
|
# Check domain/path availability
|
|
|
|
sudo yunohost app checkurl $domain$path -a jappix
|
|
|
|
if [[ ! $? -eq 0 ]]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2013-11-29 19:49:58 +01:00
|
|
|
# Remove trailing "/" for next commands
|
2013-11-29 20:25:13 +01:00
|
|
|
path=${path%/}
|
2013-11-29 20:02:46 +01:00
|
|
|
|
2013-12-09 16:32:17 +01:00
|
|
|
if [ -z "$path" ]; then
|
|
|
|
path="/"
|
|
|
|
fi
|
|
|
|
|
2013-11-29 18:27:42 +01:00
|
|
|
|
2013-11-29 12:49:27 +01:00
|
|
|
# Generate random DES key & password
|
|
|
|
deskey=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d '[A-Za-z0-9]' | sed -n 's/\(.\{24\}\).*/\1/p')
|
|
|
|
db_pwd=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d '[A-Za-z0-9]' | sed -n 's/\(.\{24\}\).*/\1/p')
|
|
|
|
|
|
|
|
|
|
|
|
# Copy files to the right place
|
|
|
|
final_path=/var/www/jappix
|
|
|
|
sudo mkdir -p $final_path
|
|
|
|
sudo cp -r ../source/* $final_path
|
2013-11-29 12:54:22 +01:00
|
|
|
sudo cp ../conf/*.xml $final_path/store/conf/
|
2013-11-29 12:49:27 +01:00
|
|
|
|
|
|
|
# Set permissions to jappix directory
|
|
|
|
sudo chown -R www-data: $final_path
|
|
|
|
|
|
|
|
# Modify Nginx configuration file and copy it to Nginx conf directory
|
|
|
|
sudo sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf
|
2013-12-09 16:36:28 +01:00
|
|
|
path=${path%/}
|
2013-11-29 12:49:27 +01:00
|
|
|
sudo sed -i "s@ALIASTOCHANGE@$final_path/@g" ../conf/nginx.conf
|
|
|
|
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/jappix.conf
|
|
|
|
sudo sed -i "s@PATHTOCHANGE@$path@g" $final_path/store/conf/main.xml
|
|
|
|
sudo sed -i "s@PATHTOCHANGE@$path@g" $final_path/store/conf/hosts.xml
|
|
|
|
sudo sed -i "s@DOMAINTOCHANGE@$domain@g" $final_path/store/conf/main.xml
|
|
|
|
sudo sed -i "s@DOMAINTOCHANGE@$domain@g" $final_path/store/conf/hosts.xml
|
|
|
|
|
|
|
|
# Reload Nginx and regenerate SSOwat conf
|
|
|
|
sudo service nginx reload
|
|
|
|
sudo yunohost app ssowatconf
|