Add Docker configuration and fix paths

This commit is contained in:
nickpons666
2026-01-19 17:10:54 -06:00
parent 85894619d8
commit 6a1c86d88a
12 changed files with 152 additions and 6 deletions

View File

@@ -0,0 +1,30 @@
<VirtualHost *:80>
ServerName contenedor-ibiza.ddns.net
DocumentRoot /var/www/html/public
Alias /bot /var/www/html/bot
<Directory /var/www/html/public>
Options +FollowSymLinks
AllowOverride All
Require all granted
<IfModule mod_php.c>
php_flag display_errors on
php_flag log_errors on
php_value error_reporting E_ALL
</IfModule>
</Directory>
<Directory /var/www/html/bot>
Options +FollowSymLinks
AllowOverride All
Require all granted
</Directory>
php_admin_value upload_max_filesize 20M
php_admin_value post_max_size 20M
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>