1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/lionwiki-t2t_ynh.git synced 2024-09-03 19:36:27 +02:00

updating config and installation rights

This commit is contained in:
farvardin 2024-02-18 21:54:23 +01:00
parent 272fa68de3
commit f311846e1d
2 changed files with 5 additions and 4 deletions

View file

@ -74,9 +74,9 @@ $START_PAGE = 'main'; // Which page should be default (start page)?
$RSS = '<a href="./var/rss.xml">RSS</a>';
// if needed (if autodetection doesn't work), force language
$LANG = __LANGUAGE__;
// (it looks like forcing another language crashes lionwiki so it's better to keep LANG=en at the moment... autodetection seems to work anyway)
$LANG = en;
$LANG = '__LANGUAGE__';
// (it looks like forcing another language crashes lionwiki so it's better to keep LANG='en' at the moment... autodetection seems to work anyway)
$LANG = 'en';
/* see the file config.t2t to tweak the syntax and even more! */

View file

@ -73,8 +73,9 @@ ynh_add_nginx_config
# chmod again to fix unaccessible templates / css files
chmod -R 755 "$install_dir"
# don't allow read access to config.php for everyone
# don't allow read access to config.php and pages/ for everyone
chmod 750 "$install_dir"/config.php
chmod -R 750 "$install_dir"/var/pages/
# chmod root folder
chmod 750 "$install_dir"