refactor(infra) : reorganize docker config into infra/dev and infra/prod
Some checks failed
Auto Tag Develop / tag (push) Has been cancelled

Align project structure with Lesstime: move docker/ to infra/dev/ and
deploy/ to infra/prod/. Update all references in docker-compose,
makefile, CI workflow, Dockerfile, .gitignore and .dockerignore.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-02 08:11:35 +02:00
parent 4ba134dd69
commit 18cb9d5d80
21 changed files with 18 additions and 18 deletions

15
infra/dev/vhost.conf Normal file
View File

@@ -0,0 +1,15 @@
<VirtualHost *:80>
ServerName localhost
DocumentRoot /var/www/html/public
# API Symfony
<Directory /var/www/html/public>
Options +FollowSymLinks
AllowOverride All
Require all granted
</Directory>
# Logs
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>