chore: Update Docker configuration and app config

- Modified docker-compose.yml (port/environment changes)
- Updated config/app.php
- Added apache-vhost-windows.conf for Windows setup
This commit is contained in:
kirill.khorkov
2026-01-06 17:07:14 +03:00
parent a4092adf2e
commit 7f876b5c4a
3 changed files with 57 additions and 1 deletions

View File

@@ -3,7 +3,13 @@
return [
'name' => 'AETERNA',
'debug' => getenv('APP_DEBUG') ?: true,
// URL приложения
// Для Docker: http://localhost:8080
// Для Windows с Apache: http://aeterna.local или http://localhost
// Можно переопределить через переменную окружения APP_URL в Apache
'url' => getenv('APP_URL') ?: 'http://localhost:8080',
'base_path' => '',
'timezone' => 'Europe/Moscow',
'locale' => 'ru_RU',