Beta-Seite hinzugefügt
This commit is contained in:
parent
f7f3a5c405
commit
b0287f5db0
51
config/autoload/beta.local.php
Normal file
51
config/autoload/beta.local.php
Normal file
@ -0,0 +1,51 @@
|
||||
<?php
|
||||
/**
|
||||
* Local Configuration Override
|
||||
*
|
||||
* This configuration override file is for overriding environment-specific and
|
||||
* security-sensitive configuration information. Copy this file without the
|
||||
* .dist extension at the end and populate values as needed.
|
||||
*
|
||||
* @NOTE: This file is ignored from Git by default with the .gitignore included
|
||||
* in ZendSkeletonApplication. This is a good practice, as it prevents sensitive
|
||||
* credentials from accidentally being committed into version control.
|
||||
*/
|
||||
|
||||
return [
|
||||
'doctrine' => [
|
||||
'connection' => array(
|
||||
'default' => array(
|
||||
'params' => [
|
||||
'user' => 'silas',
|
||||
'password' => 'AbGonWigogNulfAyp',
|
||||
'host' => '127.0.0.1',
|
||||
'dbname' => 'silas_beta_wordRotator',
|
||||
'driverOptions' => array(
|
||||
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8'
|
||||
),
|
||||
'useStrict' => true,
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
'mailEinstellungen' => array(
|
||||
'options' => array(
|
||||
'name' => 'WordRotator - Beta',
|
||||
'host' => 'eltanin.uberspace.de',
|
||||
'port' => '587',
|
||||
'connection_class' => 'plain', // plain oder login
|
||||
'connection_config' => array(
|
||||
'username' => 'silas',
|
||||
'password' => 'l$?%u<M4j)|>sN\\Oj\\/l0VQ%IF',
|
||||
'ssl' => 'tls',
|
||||
),
|
||||
),
|
||||
'sender' => 'beta@silas.link',
|
||||
),
|
||||
|
||||
'systemvariablen' => array(
|
||||
'passwordHash' => 'hencxkgj',
|
||||
'websiteName' => 'WordRotator - Beta',
|
||||
'maxAgeOfUserCodes' => 2 //In Tagen
|
||||
),
|
||||
];
|
||||
@ -30,7 +30,7 @@ return [
|
||||
],
|
||||
'mailEinstellungen' => array(
|
||||
'options' => array(
|
||||
'name' => 'Stories',
|
||||
'name' => 'WordRotator',
|
||||
'host' => 'eltanin.uberspace.de',
|
||||
'port' => '587',
|
||||
'connection_class' => 'plain', // plain oder login
|
||||
@ -44,8 +44,8 @@ return [
|
||||
),
|
||||
|
||||
'systemvariablen' => array(
|
||||
'passwordHash' => '',
|
||||
'websiteName' => '',
|
||||
'passwordHash' => 'kxykgdgkhxyfbgxhjipab-lmk<s52f',
|
||||
'websiteName' => 'WordRotator',
|
||||
'maxAgeOfUserCodes' => 2 //In Tagen
|
||||
),
|
||||
];
|
||||
|
||||
@ -46,4 +46,4 @@ RewriteRule ^(.*)$ %{ENV:BASE}/index.html [L]
|
||||
<IfModule mod_headers.c>
|
||||
Header append Vary User-Agent env=!dont-vary
|
||||
</IfModule>
|
||||
</IfModule>
|
||||
</IfModule>
|
||||
|
||||
@ -4677,7 +4677,7 @@ class ParentSegment extends Segment {
|
||||
}
|
||||
|
||||
async rotate() {
|
||||
let timeout = 1250;
|
||||
let timeout = 250;
|
||||
|
||||
if (!this.getLevel().getHasWon()) {
|
||||
this.rotation += 90;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user