mirror of
https://github.com/YunoHost-Apps/jappix_ynh.git
synced 2024-09-03 19:26:19 +02:00
script and conf
This commit is contained in:
parent
8d17ed8254
commit
f7c64a1a26
3 changed files with 9 additions and 1 deletions
|
@ -5,7 +5,7 @@
|
|||
<pubsub>pubsub.DOMAINTOCHANGE</pubsub>
|
||||
<vjud>vjud.DOMAINTOCHANGE</vjud>
|
||||
<anonymous>anonymous.DOMAINTOCHANGE</anonymous>
|
||||
<bosh>https://DOMAINTOCHANGEPATHTOCHANGE/http-bind</bosh>
|
||||
<bosh>https://DOMAINTOCHANGE/PATHTOCHANGE/http-bind</bosh>
|
||||
<bosh_main></bosh_main>
|
||||
<bosh_mini></bosh_mini>
|
||||
<static></static>
|
||||
|
|
|
@ -19,6 +19,7 @@ db_pwd=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d '[A-Za-z0-9]'
|
|||
final_path=/var/www/jappix
|
||||
sudo mkdir -p $final_path
|
||||
sudo cp -r ../source/* $final_path
|
||||
sudo cp ../conf/*.xml $fnal_path/store/conf/
|
||||
|
||||
# Set permissions to jappix directory
|
||||
sudo chown -R www-data: $final_path
|
||||
|
@ -27,6 +28,10 @@ sudo chown -R www-data: $final_path
|
|||
sudo sed -i "s@PATHTOCHANGE@$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/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
|
||||
|
|
3
scritps/remove
Normal file
3
scritps/remove
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
sudo rm -rf /var/www/jappix
|
||||
sudo rm -f /etc/nginx/conf.d/$domain.d/jappix.conf
|
Loading…
Reference in a new issue