1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ttrss_ynh.git synced 2024-10-01 13:34:46 +02:00

script bugfix

This commit is contained in:
titoko titoko 2013-11-24 18:02:17 +01:00
parent e0889ab620
commit cea6ac2861

View file

@ -24,24 +24,24 @@ sudo yunohost app setting ttrss mysqlpwd -v $db_pwd
# Copy files to the right place # Copy files to the right place
final_path=/var/www/ttrss final_path=/var/www/ttrss
sudo mkdir -p $final_path sudo mkdir -p $final_path
sudo cp -a sources/* $final_path sudo cp -a ../sources/* $final_path
sudo cp conf/config.php $final_path/ sudo cp ../conf/config.php $final_path/
# Change variables in ttrss configuration # Change variables in ttrss configuration
sed -i "s/yunouser/$DB_USER/g" $final_path/config.php sudo sed -i "s/yunouser/$DB_USER/g" $final_path/config.php
sed -i "s/yunopass/$DB_PWD/g" $final_path/config.php sudo sed -i "s/yunopass/$DB_PWD/g" $final_path/config.php
sed -i "s/yunobase/$DB_NAME/g" $final_path/config.php sudo sed -i "s/yunobase/$DB_NAME/g" $final_path/config.php
sed -i "s,yunopath,https://${APP_DOMAIN}${APP_PATH},g" $final_path/config.php sudo sed -i "s,yunopath,https://${APP_DOMAIN}${APP_PATH},g" $final_path/config.php
echo "*/30 * * * * www-data cd $final_path && /usr/bin/php $final_path/update.php -feeds >/dev/null 2>&1" > /etc/cron.d/ttrss sudo echo "*/30 * * * * www-data cd $final_path && /usr/bin/php $final_path/update.php -feeds >/dev/null 2>&1" > /etc/cron.d/ttrss
# Set permissions to ttrss directory # Set permissions to ttrss directory
sudo chown -R www-data: $final_path sudo chown -R www-data: $final_path
# Modify Nginx configuration file and copy it to Nginx conf directory # Modify Nginx configuration file and copy it to Nginx conf directory
sed -i "s@PATHTOCHANGE@$path@g" conf/nginx.conf sudo sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf
sed -i "s@ALIASTOCHANGE@$final_path/@g" conf/nginx.conf sudo sed -i "s@ALIASTOCHANGE@$final_path/@g" ../conf/nginx.conf
sudo cp conf/nginx.conf /etc/nginx/conf.d/$domain.d/ttrss.conf sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/ttrss.conf
# Reload Nginx and regenerate SSOwat conf # Reload Nginx and regenerate SSOwat conf
sudo service nginx reload sudo service nginx reload