mirror of
https://github.com/YunoHost-Apps/xbackbone_ynh.git
synced 2024-09-03 19:15:53 +02:00
fix
This commit is contained in:
parent
384c01efa8
commit
d6d320bebc
2 changed files with 3 additions and 3 deletions
|
@ -5,11 +5,11 @@ return [
|
||||||
'base_url' => 'https://__DOMAIN____PATH__',
|
'base_url' => 'https://__DOMAIN____PATH__',
|
||||||
'storage' => [
|
'storage' => [
|
||||||
'driver' => 'local',
|
'driver' => 'local',
|
||||||
'path' => '__DATA_DIR__',
|
'path' => './storage',
|
||||||
],
|
],
|
||||||
'db' => [
|
'db' => [
|
||||||
'connection' => 'sqlite',
|
'connection' => 'sqlite',
|
||||||
'dsn' => '__INSTALL_DIR__/resources/database/xbackbone.db',
|
'dsn' => 'resources/database/xbackbone.db',
|
||||||
'username' => null,
|
'username' => null,
|
||||||
'password' => null,
|
'password' => null,
|
||||||
]
|
]
|
||||||
|
|
|
@ -8,7 +8,7 @@ location __PATH__/ {
|
||||||
|
|
||||||
client_max_body_size 512M;
|
client_max_body_size 512M;
|
||||||
|
|
||||||
try_files $uri $uri/ index.php;
|
try_files $uri $uri/ /index.php;
|
||||||
|
|
||||||
location ~ [^/]\.php(/|$) {
|
location ~ [^/]\.php(/|$) {
|
||||||
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
||||||
|
|
Loading…
Add table
Reference in a new issue