mirror of
https://github.com/YunoHost-Apps/spip_ynh.git
synced 2024-09-03 20:25:59 +02:00
Suppression de l'option multisite
This commit is contained in:
parent
56606a45c6
commit
5329ca8292
2 changed files with 1 additions and 8 deletions
|
@ -1,8 +1,3 @@
|
|||
#--MULTISITE--if (!-e $request_filename) {
|
||||
#--MULTISITE--rewrite /ecrire$ $scheme://$host$uri/ permanent;
|
||||
#--MULTISITE--rewrite ^__PATHTOCHANGE__(/[^/]+)?(/.*\.php)$ __PATHTOCHANGE__$2 last;
|
||||
#--MULTISITE--}
|
||||
|
||||
location __PATHTOCHANGE__ {
|
||||
alias __FINALPATH__/;
|
||||
index index.php;
|
||||
|
|
|
@ -17,7 +17,6 @@ domain=$YNH_APP_ARG_DOMAIN
|
|||
path=$YNH_APP_ARG_PATH
|
||||
admin_spip=$YNH_APP_ARG_ADMIN
|
||||
language=$YNH_APP_ARG_LANGUAGE
|
||||
#multisite=$YNH_APP_ARG_MULTISITE
|
||||
is_public=$YNH_APP_ARG_IS_PUBLIC
|
||||
ldap=$YNH_APP_ARG_LDAP
|
||||
|
||||
|
@ -39,7 +38,6 @@ ynh_app_setting_set $app admin $admin_spip
|
|||
ynh_app_setting_set $app is_public $is_public
|
||||
ynh_app_setting_set $app language $language
|
||||
ynh_app_setting_set $app ldap $ldap
|
||||
#ynh_app_setting_set $app multisite $multisite
|
||||
|
||||
GENERATE_DB $app # Create a database and a dedicated user in the app name
|
||||
|
||||
|
@ -108,7 +106,7 @@ done
|
|||
mysql --debug-check -u $db_user -p$db_pwd $db_user < ../conf/sql/spip.sql
|
||||
|
||||
# Use LDAP for SPIP
|
||||
if [ "$ldap" = "Yes" ];
|
||||
if [ "${ldap}" = "Yes" ];
|
||||
then
|
||||
sudo cp ../conf/ldap.php $final_path/config/ldap.php
|
||||
sudo sed -i "s/__LDAP__/ldap/g" $final_path/config/connect.php
|
||||
|
|
Loading…
Reference in a new issue