From f51c9ed2abe5c68211bb3736be5f70b1fe2c9ec0 Mon Sep 17 00:00:00 2001
From: M.Gergo
Date: Fri, 8 Mar 2019 21:20:34 +0100
Subject: további rendrakás
---
.../mayor-base/config/main-config.php.example | 70 ++++++++++++++++++++
mayor-orig/mayor-base/config/main.conf.example | 75 +++++++++++++++++++++
.../config/menu/public/menu-hu_HU.php.example | 16 +++++
.../mayor-base/config/parent-conf.php.example | 22 +++++++
.../mayor-base/config/private-conf.php.example | 76 ++++++++++++++++++++++
.../config/private-conf.php.ldap-ng.example | 66 +++++++++++++++++++
.../mayor-base/config/public-conf.php.example | 24 +++++++
.../mayor-base/config/skin-blue/config.php.example | 8 +++
.../config/skin-classic/config.php.example | 7 ++
.../config/skin-sulix/config.php.example | 6 ++
.../config/skin-winter/config.php.example | 6 ++
11 files changed, 376 insertions(+)
create mode 100644 mayor-orig/mayor-base/config/main-config.php.example
create mode 100644 mayor-orig/mayor-base/config/main.conf.example
create mode 100644 mayor-orig/mayor-base/config/menu/public/menu-hu_HU.php.example
create mode 100644 mayor-orig/mayor-base/config/parent-conf.php.example
create mode 100644 mayor-orig/mayor-base/config/private-conf.php.example
create mode 100644 mayor-orig/mayor-base/config/private-conf.php.ldap-ng.example
create mode 100644 mayor-orig/mayor-base/config/public-conf.php.example
create mode 100644 mayor-orig/mayor-base/config/skin-blue/config.php.example
create mode 100644 mayor-orig/mayor-base/config/skin-classic/config.php.example
create mode 100644 mayor-orig/mayor-base/config/skin-sulix/config.php.example
create mode 100644 mayor-orig/mayor-base/config/skin-winter/config.php.example
(limited to 'mayor-orig/mayor-base/config')
diff --git a/mayor-orig/mayor-base/config/main-config.php.example b/mayor-orig/mayor-base/config/main-config.php.example
new file mode 100644
index 00000000..5a9ad2ec
--- /dev/null
+++ b/mayor-orig/mayor-base/config/main-config.php.example
@@ -0,0 +1,70 @@
+ array(),
+ 'startColumn' => array(),
+ 'startMain' => array(),
+ 'startToolBar' => array(),
+ 'html_head' => array()
+);
+
+// A telepített modulok
+$INSTALLED_MODULES = array();
+/*
+if ($dh = opendir('include/config/')) {
+ while (($file = readdir($dh)) !== false) {
+ if (substr($file,0,6)=='module') require('include/config/'.$file);
+ }
+ closedir($dh);
+}
+*/
+
+?>
\ No newline at end of file
diff --git a/mayor-orig/mayor-base/config/main.conf.example b/mayor-orig/mayor-base/config/main.conf.example
new file mode 100644
index 00000000..53fb28a5
--- /dev/null
+++ b/mayor-orig/mayor-base/config/main.conf.example
@@ -0,0 +1,75 @@
+#======================#
+# Main #
+#======================#
+
+BASEDIR="/var/mayor"
+WEB_SERVER_USER="www-data"
+MYSQL_HOST="localhost"
+MYSQL_USER="root"
+MYSQL_PW="%SQLPW%"
+
+MYSQL=/usr/bin/mysql
+SHELL=/bin/sh
+
+#======================#
+# Update #
+#======================#
+
+UPDATELOG="$BASEDIR/log/update.log"
+SQLLOG="$BASEDIR/log/sql-update.log"
+REVISION_FILE="$BASEDIR/log/revision"
+UPDATEDIR="$BASEDIR/update"
+TMPDIR=/tmp/update
+LOCKFILE=/var/run/mayor.lock
+
+MODULES="mayor-base mayor-naplo"
+# A wget megléte szükséges a http/tgz alapú frissítés használatához!
+HTTP_SERVER=http://mirror.mayor.hu/download
+
+# Ha a verzió egyedi nevét írjuk be (bubbly, radyx, rypple...),
+# akkor saját hatáskörben dől el, hogy mikor váltunk verziót.
+# Ha a "current" értéket adjuk meg, akkor a verzióváltás automatikus
+VERSION=current
+
+# Egyes oldalak letiltása
+# publicDeny="naplo/tanev/orarend naplo/tanev/masikoldal"
+
+# Saját update scritp teljes elérési útja
+# A szkript a rendes update folyamat végén fut le. A szkriptnek léteznie kell és futtatási joggal kell rendelkeznie.
+# LOCAL_UPDATE_SCRIPT=/usr/local/sbin/mayor-localupdate.sh
+
+
+#======================#
+# Backup #
+#======================#
+
+BACKUPDIR=/home/backup
+
+EXCLUDED_DBS=''
+
+SAVELDAP=0
+BASEDN='o=mayor,c=hu'
+LDAPCONFDIR=/etc/ldap
+LDAPDBDIR=/var/lib/ldap
+
+# Hány napig tartsuk meg a mentéseket? 0 esetén mindet megtartjuk (ajánlott)
+BACKUPDAYS=0
+
+# Ha a backup file-névben YYYYMMDDHHMM órát és percet is tárolnánk, kommentezzük ki a DATE= változót!
+#DATE=`date "+%Y%m%d%H%M"`
+
+
+# Losonci János kiegészítése (losy@agymk.sulinet.hu)
+# PREFIX a mentés tgz előtagja
+
+PREFIX=''
+
+# RSYNC ha értéke nem 1, nincs rsync
+# RHOST rsync távoli gép
+# RUSER rsync távoli gép felhasználó
+# RPATH rsync távoli gépen levő útvonal a mentéshez
+
+RSYNC=0
+RUSER=''
+RHOST=''
+RPATH=''
diff --git a/mayor-orig/mayor-base/config/menu/public/menu-hu_HU.php.example b/mayor-orig/mayor-base/config/menu/public/menu-hu_HU.php.example
new file mode 100644
index 00000000..877a7758
--- /dev/null
+++ b/mayor-orig/mayor-base/config/menu/public/menu-hu_HU.php.example
@@ -0,0 +1,16 @@
+ 'SuliNet', 'url' => 'http://www.sulinet.hu', 'target' => '_blank'),
+ );
+
+
+?>
\ No newline at end of file
diff --git a/mayor-orig/mayor-base/config/parent-conf.php.example b/mayor-orig/mayor-base/config/parent-conf.php.example
new file mode 100644
index 00000000..75249139
--- /dev/null
+++ b/mayor-orig/mayor-base/config/parent-conf.php.example
@@ -0,0 +1,22 @@
+'naplo', 'f' => 'diakValaszto');
+//$DEFAULT_PSF['parent'] = array('page'=>'portal', 'f' => 'start');
+$AUTH['parent'] = array(
+ 'backend' => 'mysql',
+ 'authentication' => 'required',
+ 'onExpired' => 'warning',
+ 'onDisabled' => 'none',
+ 'enableSelfPasswordChange' => true,
+ 'enablePasswordReset' => true,
+# 'createAccount' => 'byRegistration',
+ 'createAccount' => 'byAdmin',
+ 'accountAttrs' => array('mail','telephoneNumber'),
+
+ 'mysql host' => 'localhost',
+ 'mysql db' => 'mayor_parent',
+ 'mysql user' => 'mayor_parent',
+ 'mysql pw' => '%SQLPW%',
+);
+
+?>
\ No newline at end of file
diff --git a/mayor-orig/mayor-base/config/private-conf.php.example b/mayor-orig/mayor-base/config/private-conf.php.example
new file mode 100644
index 00000000..f241e358
--- /dev/null
+++ b/mayor-orig/mayor-base/config/private-conf.php.example
@@ -0,0 +1,76 @@
+'portal', 'sub'=>'portal', 'f' => 'portal');
+// Illetve nélküle, csak napló modullal:
+ $DEFAULT_PSF['private'] = array('page'=>'naplo', 'sub'=>'', 'f' => 'naplo');
+
+/*
+ 'onExpired = 'none' | 'warning' | 'force update'
+ Ha lejár a jelszó érvényessége (de még nincs letiltva), akkor
+ none - ne történjen semmi, azaz nem vesszük figyelembe, beengedjük
+ warning - beengedjük figyelmeztető üzenettel
+ force update - jelszóváltoztatásra kényszerítjük => enableSelfPasswordChange
+ 'onDisabled = 'none' | 'refuse'
+ none - nem vesszük figyelembe, azaz beengedjük
+ refuse - visszautasítjuk
+ 'enableSelfPasswordChange' = true | false
+ 'accountCreateMode' => 'registration' | 'create by admin' => admingroup
+
+*/
+
+
+ $AUTH['private'] = array(
+// 'backend' => 'ldap',
+// 'backend' => 'ads',
+ 'backend' => 'mysql',
+
+ 'authentication' => 'required',
+ 'onExpired' => 'force update',
+ 'onDisabled' => 'none',
+ 'enableSelfPasswordChange' => true,
+ 'createAccount' => 'byAdmin',
+ 'adminGroup' => 'useradmin',
+ 'categories' => array('tanár','diák','titkárság','egyéb'),
+ 'accountAttrs' => array('studyId','mail','telephoneNumber'),
+ 'unixStyleAccounts' => false,
+
+ 'shadowLastChange' => intval(time()/(60*60*24)),
+ 'shadowMin' => 2,
+ 'shadowMax' => 80,
+ 'shadowWarning' => 10,
+ 'shadowInactive' => 0,
+
+ 'mysql host' => 'localhost',
+ 'mysql db' => 'mayor_private',
+ 'mysql user' => 'mayor_private',
+ 'mysql pw' => '%SQLPW%',
+
+ //OpenLdap + MaYoR schema
+ //'ldap hostname' => 'localhost',
+ //'ldap protocol version' => 3,
+ //'ldap base dn' => 'o=mayor,c=hu',
+ //'createAccountScript' => 'accounts.sh'
+
+ #Active Directory Test
+ #'backend' => 'ads',
+ #'adsHostname' => 'ldaps://your.domain:636', // Jelszóváltoztatáshoz kötelező az ldaps
+ #'adsBaseDn' => 'DC=your,DC=domain',
+ #'adsUser' => 'CN=User,OU=Users,DC=your,DC=domain', // Olvasási jog az AD-ben - Normál user
+ #'adsPw' => 'jelszó',
+ #'adsAccountOperatorUser' => 'CN=Op,OU=Users,DC=your,DC=domain', // Account Operators (Fiókfelelősök) csoport tag pl (jelszóváltoztatás)
+ #'adsAccountOperatorPw' => 'jelszó',
+ #'adsUserObjectClass' => 'person', // Userek objectum osztálya (volt posixAccount)
+ #'adsGroupObjectClass' => 'group', // Csoportok objectum osztálya (volt nayorGroup)
+ #'adsStudyIdAttr' => 'serialnumber', // Az oktatási azonosítót tároló attribútum (studyId)
+ #'adsContainers' => array(
+ # 'ou=IT,dc=vmg,dc=local',
+ # 'ou=diak,dc=vmg,dc=local'
+ #),
+ #'adminGroup' => 'Fiókfelelősök',
+ #'cacheable' => true,
+ );
+ $AUTH['private']['shadowExpire'] = $AUTH['private']['shadowLastChange'] + $AUTH['private']['shadowMax'] + $AUTH['private']['shadowInactive'];
+
+?>
\ No newline at end of file
diff --git a/mayor-orig/mayor-base/config/private-conf.php.ldap-ng.example b/mayor-orig/mayor-base/config/private-conf.php.ldap-ng.example
new file mode 100644
index 00000000..63643bc2
--- /dev/null
+++ b/mayor-orig/mayor-base/config/private-conf.php.ldap-ng.example
@@ -0,0 +1,66 @@
+'portal', 'sub'=>'portal', 'f' => 'portal');
+// Illetve nélküle, csak napló modullal:
+ $DEFAULT_PSF['private'] = array('page'=>'naplo', 'sub'=>'', 'f' => 'naplo');
+
+/*
+ 'onExpired = 'none' | 'warning' | 'force update'
+ Ha lejár a jelszó érvényessége (de még nincs letiltva), akkor
+ none - ne történjen semmi, azaz nem vesszük figyelembe, beengedjük
+ warning - beengedjük figyelmeztető üzenettel
+ force update - jelszóváltoztatásra kényszerítjük => enableSelfPasswordChange
+ 'onDisabled = 'none' | 'refuse'
+ none - nem vesszük figyelembe, azaz beengedjük
+ refuse - visszautasítjuk
+ 'enableSelfPasswordChange' = true | false
+ 'accountCreateMode' => 'registration' | 'create by admin' => admingroup
+
+*/
+
+
+ $AUTH['private'] = array(
+
+ 'authentication' => 'required',
+ 'onExpired' => 'force update',
+ 'onDisabled' => 'none',
+ 'enableSelfPasswordChange' => true,
+ 'createAccount' => 'byAdmin',
+ 'adminGroup' => 'useradmin',
+ 'categories' => array('tanár','diák','titkárság','egyéb'),
+ 'accountAttrs' => array('studyId','mail','telephoneNumber'),
+ 'unixStyleAccounts' => false,
+
+ 'shadowLastChange' => intval(time()/(60*60*24)),
+ 'shadowMin' => 2,
+ 'shadowMax' => 80,
+ 'shadowWarning' => 10,
+ 'shadowInactive' => 0,
+
+ # LDAP-NG
+ 'backend' => 'ldap-ng',
+ 'ldapHostname' => 'ldaps://your.domain:636', // Jelszóváltoztatáshoz kötelező az ldaps
+ 'ldapBaseDn' => 'DC=your,DC=domain',
+ 'ldapUser' => 'CN=User,OU=Users,DC=your,DC=domain', // Olvasási jog az AD-ben - Normál user
+ 'ldapPw' => 'jelszó',
+ #'ldapAccountOperatorUser' => 'CN=Op,OU=Users,DC=your,DC=domain', // Account Operators (Fiókfelelősök) csoport tag pl (jelszóváltoztatás)
+ #'ldapAccountOperatorPw' => 'jelszó',
+ 'ldapUserObjectClass' => 'person', // Userek objectum osztálya (volt posixAccount)
+ 'ldapStudyIdAttr' => 'serialnumber', // Az oktatási azonosítót tároló attribútum (studyId)
+ 'ldapUserAccountAttr' => 'uid', // A felhasználói azonosítót tároló attribútum (uid)
+ 'ldapCnAttr' => 'cn', // A felhasználói teljes neve (cn)
+ 'ldapGroupObjectClass' => 'group', // Csoportok objectum osztálya (volt nayorGroup)
+ 'ldapGroupCnAttr' => 'cn', // A csoport teljes neve (cn)
+
+ 'ldapContainers' => array(
+ 'ou=IT,dc=vmg,dc=local',
+ 'ou=diak,dc=vmg,dc=local'
+ ),
+ #'adminGroup' => 'Fiókfelelősök',
+ #'cacheable' => true,
+ );
+ $AUTH['private']['shadowExpire'] = $AUTH['private']['shadowLastChange'] + $AUTH['private']['shadowMax'] + $AUTH['private']['shadowInactive'];
+
+?>
\ No newline at end of file
diff --git a/mayor-orig/mayor-base/config/public-conf.php.example b/mayor-orig/mayor-base/config/public-conf.php.example
new file mode 100644
index 00000000..a366aefa
--- /dev/null
+++ b/mayor-orig/mayor-base/config/public-conf.php.example
@@ -0,0 +1,24 @@
+'portal', 'sub'=>'portal', 'f' => 'portal');
+// Illetve nélküle, csak napló modullal:
+ $DEFAULT_PSF['public'] = array('page'=>'auth', 'sub'=>'', 'f' => 'login');
+
+$AUTH['public'] = array(
+ 'backend' => 'file',
+ 'authentication' => 'optional',
+ 'onExpired' => 'force update',
+ 'onDisabled' => 'refuse',
+ 'accountAttrs' => array('mail'),
+
+ 'file account file' => '/tmp/passwd',
+ 'file group file' => '/tmp/group',
+);
+
+// authentication:
+// - optional: nem próbálunk authentikálni [default]
+// - try: megpróbálhatunk belépni (globalLogin használja)
+// - required: kötelező
+?>
\ No newline at end of file
diff --git a/mayor-orig/mayor-base/config/skin-blue/config.php.example b/mayor-orig/mayor-base/config/skin-blue/config.php.example
new file mode 100644
index 00000000..ff576e78
--- /dev/null
+++ b/mayor-orig/mayor-base/config/skin-blue/config.php.example
@@ -0,0 +1,8 @@
+
\ No newline at end of file
diff --git a/mayor-orig/mayor-base/config/skin-classic/config.php.example b/mayor-orig/mayor-base/config/skin-classic/config.php.example
new file mode 100644
index 00000000..46422cf8
--- /dev/null
+++ b/mayor-orig/mayor-base/config/skin-classic/config.php.example
@@ -0,0 +1,7 @@
+'."\n";
+ //$SSSHH .= ''."\n";
+ //define('_ENABLE_IFRAME_EMBEDDING',true); // IFRAME-be ágyazás engedélyezése - !! Biztonsági kockázat !!
+?>
\ No newline at end of file
diff --git a/mayor-orig/mayor-base/config/skin-sulix/config.php.example b/mayor-orig/mayor-base/config/skin-sulix/config.php.example
new file mode 100644
index 00000000..b2afcacb
--- /dev/null
+++ b/mayor-orig/mayor-base/config/skin-sulix/config.php.example
@@ -0,0 +1,6 @@
+
\ No newline at end of file
diff --git a/mayor-orig/mayor-base/config/skin-winter/config.php.example b/mayor-orig/mayor-base/config/skin-winter/config.php.example
new file mode 100644
index 00000000..d106ade5
--- /dev/null
+++ b/mayor-orig/mayor-base/config/skin-winter/config.php.example
@@ -0,0 +1,6 @@
+?php
+ // site skin specific html head
+ $SSSHH = '';
+ //$SSSHH .= ''."\n";
+ //$SSSHH .= ''."\n";
+?>
\ No newline at end of file
--
cgit v1.2.3