2014-08-07 02:57:24 +02:00
|
|
|
# Retrieve arguments
|
|
|
|
domain=$1
|
|
|
|
path=$2
|
2014-08-07 04:42:27 +02:00
|
|
|
final_path=/var/www/seafile
|
|
|
|
seafile_version=3.1.1
|
2014-08-07 02:57:24 +02:00
|
|
|
|
|
|
|
# Check domain/path availability
|
|
|
|
sudo yunohost app checkurl $domain$path -a seafile
|
|
|
|
if [[ ! $? -eq 0 ]]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Check dependencies
|
2014-08-07 04:42:27 +02:00
|
|
|
sudo apt-get install -y python2.7 python-setuptools python-simplejson python-imaging sqlite3
|
2014-08-07 02:57:24 +02:00
|
|
|
|
|
|
|
# Copy files to the right place
|
|
|
|
sudo mkdir -p $final_path
|
2014-08-07 04:42:27 +02:00
|
|
|
sudo cp -R ../sources/* $final_path/
|
|
|
|
|
|
|
|
# Set permissions to seafile directory
|
|
|
|
#sudo chown -R www-data: $final_path
|
|
|
|
sudo chmod +x $final_path/seafile-server-$seafile_version/seafile.sh
|
|
|
|
|
|
|
|
# Change configuration
|
|
|
|
# Port
|
|
|
|
# Domain
|
|
|
|
# Admin account
|
2014-08-07 02:57:24 +02:00
|
|
|
|
2014-08-07 04:42:27 +02:00
|
|
|
# Add Seafile Server to startup
|
|
|
|
# TODO
|
2014-08-07 02:57:24 +02:00
|
|
|
|
|
|
|
# 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
|
|
|
|
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/seafile.conf
|
|
|
|
|
2014-08-07 04:42:27 +02:00
|
|
|
# Start Seafile Server
|
|
|
|
cd $final_path/seafile-server-*
|
|
|
|
sudo ./seafile.sh start
|
|
|
|
sudo ./seahub.sh start
|
2014-08-07 02:57:24 +02:00
|
|
|
|
|
|
|
# Reload Nginx and regenerate SSOwat conf
|
|
|
|
sudo service nginx reload
|
|
|
|
sudo yunohost app ssowatconf
|