1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/backdrop_ynh.git synced 2024-09-03 20:36:14 +02:00

Merge pull request #1 from tituspijean/testing

[fix] <?php detection in settings.php
This commit is contained in:
Éric Gaspar 2020-10-18 17:51:09 +02:00 committed by GitHub
commit 2077c2e72b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 17 additions and 8 deletions

View file

@ -11,6 +11,10 @@ location __PATH__/ {
index index.php;
if (!-e $request_filename) {
rewrite ^__PATH__/(.*)$ __PATH__/index.php?q=$1 last;
}
try_files $uri $uri/ index.php;
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;

View file

@ -1,4 +1,4 @@
<?php
<?php
/**
* @file
* Main Backdrop CMS configuration file.
@ -13,7 +13,8 @@
* https://api.backdropcms.org/database-configuration
*/
$database = 'mysql://__DBNAME__:__DBPWD__@localhost/__DBNAME__';
$database_prefix = '';
$database_prefix = '__DBNAME___';
$database_charset = 'utf8mb4';
/**
* Site configuration files location.

View file

@ -6,6 +6,9 @@
YNH_PHP_VERSION="7.3"
extra_php_dependencies="php${YNH_PHP_VERSION}-mbstring php${YNH_PHP_VERSION}-xmlrpc php${YNH_PHP_VERSION}-soap php${YNH_PHP_VERSION}-mysql php${YNH_PHP_VERSION}-gd php${YNH_PHP_VERSION}-xml php${YNH_PHP_VERSION}-cli php${YNH_PHP_VERSION}-zip"
#=================================================
# PERSONAL HELPERS
#=================================================

View file

@ -91,7 +91,7 @@ ynh_system_user_create --username=$app
ynh_script_progression --message="Configuring PHP-FPM..." --weight=2
# Create a dedicated PHP-FPM config
ynh_add_fpm_config --phpversion=$YNH_PHP_VERSION
ynh_add_fpm_config --phpversion=$YNH_PHP_VERSION --package="$extra_php_dependencies"
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
#=================================================
@ -117,8 +117,8 @@ ynh_store_file_checksum --file="$final_path/settings.php"
#=================================================
# Set permissions to app files
chown -R root: $final_path
chown -R $app:www-data $final_path/files
chown -R $app:www-data $final_path
#chown -R $app:www-data $final_path/files
chmod -R 770 $final_path/files
#=================================================

View file

@ -49,8 +49,9 @@ ynh_remove_nginx_config
#=================================================
ynh_script_progression --message="Removing PHP-FPM configuration..." --weight=3
# Remove the dedicated PHP-FPM config
ynh_remove_fpm_config
ynh_restore_file --origin_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
ynh_add_fpm_config --phpversion=$YNH_PHP_VERSION --package="$extra_php_dependencies"
#=================================================
# GENERIC FINALIZATION

View file

@ -103,7 +103,7 @@ ynh_system_user_create --username=$app
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=2
# Create a dedicated PHP-FPM config
ynh_add_fpm_config --phpversion=$YNH_PHP_VERSION
ynh_add_fpm_config --phpversion=$YNH_PHP_VERSION --package="$extra_php_dependencies"
#=================================================
# SPECIFIC UPGRADE