Upgraded to Trixie and php8.5.3

This commit is contained in:
2026-03-20 08:49:15 -07:00
parent a5deb07a66
commit 546c49767f
7 changed files with 173 additions and 91 deletions

View File

@@ -1,16 +1,22 @@
# Global log redirection to stdout and stderr
ErrorLog "|/usr/bin/tee -a /var/log/apache2/error.log"
CustomLog "|/usr/bin/tee -a /var/log/apache2/access.log" combined
<VirtualHost *:80>
ServerName localhost
DocumentRoot /data/public
<Directory /data/public>
Options Indexes FollowSymLinks
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
# Remote IP configuration
RemoteIPHeader X-Forwarded-For
RemoteIPTrustedProxy 127.0.0.1
</VirtualHost>
DirectoryIndex index.php index.html
# PHP-FPM handler
<FilesMatch \.php$>
SetHandler "proxy:unix:/run/php/php8.5-fpm.sock|fcgi://localhost/"
</FilesMatch>
# Docker-friendly logging
ErrorLog /proc/self/fd/2
CustomLog /proc/self/fd/1 combined
</VirtualHost>