Change design

This commit is contained in:
2026-09-04 11:09:34 +02:00
parent 28e1616c94
commit 78c1d8e844
36 changed files with 355 additions and 263 deletions
+3 -3
View File
@@ -1,12 +1,12 @@
# Serve https://localhost/mythoughts/ from the public web root.
# Serve https://localhost/daydream/ from the public web root.
#
# Include this from the site VirtualHost (or paste the Alias/Directory block
# into the existing one). Everything outside public/ - lib/, config/, vendor/,
# node_modules/ - stays off the document root and is never web-reachable.
Alias /mythoughts /var/www/html/mythoughts/public
Alias /daydream /var/www/html/daydream/public
<Directory /var/www/html/mythoughts/public>
<Directory /var/www/html/daydream/public>
Options FollowSymLinks
AllowOverride None
Require all granted
+1 -1
View File
@@ -4,7 +4,7 @@ class Settings {
public const DB_SERVER = 'localhost';
public const DB_LOGIN = '';
public const DB_PASS = '';
public const DB_NAME = 'mythoughts';
public const DB_NAME = 'daydream';
public const DB_ENC = 'utf8mb4';
public const TEXT_ENC = 'UTF-8';
public const TIMEZONE = 'Europe/Zurich';