Files
contenedor_ibiza/docker/contenedor-ibiza.conf

31 lines
771 B
Plaintext
Executable File

<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>