- Installation bundles: lexik/jwt, vich/uploader, symfony/uid - Configuration Docker avec pgAdmin - Variables environnement pour JWT et PostgreSQL - VirtualHost Apache pour Symfony public/ Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
16 lines
361 B
Plaintext
16 lines
361 B
Plaintext
<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>
|