mirror of
https://github.com/YunoHost-Apps/ttrss_ynh.git
synced 2024-10-01 13:34:46 +02:00
fix path
This commit is contained in:
parent
5fad3c257f
commit
40c1c8ddec
1 changed files with 5 additions and 5 deletions
|
@ -24,8 +24,8 @@ 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
|
sed -i "s/yunouser/$DB_USER/g" $final_path/config.php
|
||||||
|
@ -39,9 +39,9 @@ echo "*/30 * * * * www-data cd $final_path && /usr/bin/php $final_path/update.ph
|
||||||
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
|
sed -i "s@PATHTOCHANGE@$path@g" conf/nginx.conf
|
||||||
sed -i "s@ALIASTOCHANGE@$final_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/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
|
||||||
|
|
Loading…
Add table
Reference in a new issue