updatpe config

This commit is contained in:
E. S. 2025-04-28 15:52:07 +03:00
parent 22f8b37355
commit 842f797e07
3 changed files with 10 additions and 8 deletions

View File

@ -2,8 +2,11 @@ domain: example.org
cookie_host: .example.org
admin_email: admin@example.org
dev_domains:
- dev
default_project: 'foreignone'
subdomains:
dev: foreignone
ic: ic
icdev: ic
mysql:
host: "127.0.0.1"
@ -31,11 +34,10 @@ uploads_path: /uploads
files_domain: files.example.org
wiki_root: wiki
# deploy config
git_repo: git@github.com:example/example_org.git
skin_cache_prod_dir: replace_with_path_twig_cache_dir_on_prod
skin_cache_dev_dir: replace_with_path_twig_cache_dir_on_dev
# runtime variables
is_dev: false
git_repo: git@github.com:example/example_org.git
book_versions:
en: 1

View File

@ -30,7 +30,7 @@ abstract class RequestHandler
throw new InvalidDomainException('invalid subdomain '.$sub);
$globalContext->setProject($config['subdomains'][$sub]);
} else {
$globalContext->setProject($config['project']);
$globalContext->setProject($config['default_project']);
}
if (!in_array($_SERVER['REQUEST_METHOD'], ['POST', 'GET']))

View File

@ -73,7 +73,7 @@ class ForeignOneSkin
'render_options' => $this->options->getOptions(),
'app_config' => [
'domain' => $config['domain'],
'devMode' => $config['is_dev'],
'devMode' => isDev(),
'cookieHost' => $config['cookie_host'],
],
'body_class' => $body_class,