v8-archive
v8-archive copied to clipboard
Publish changes for release 8.8.2
A few month ago @WoLfulus fixed a CVE and released 8.8.2 on hub.docker
Could you push those changes here, and add the release tag?
Thanks
I'm not at home in the past couple weeks, but I'll take a look once I get back. I can't remember what changed straight from my head, but I think I fixed it directly in the container since there wasn't an easy way to build a new one at the time :(
@WoLfulus is there any progress, could you kindly inform us ?
Hi, there was no changes on Directus itself, but in the webserver (apache)
This is is the only thing that changed from 8.8.1 to 8.8.2
v8.8.1
/etc/apache2/conf-available/directus.conf
<Directory /var/directus/public>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
v8.8.2
/etc/apache2/conf-available/directus.conf
<Directory /var/directus/public>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
<Directory /var/directus/public/uploads>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
<IfModule mod_php7.c>
php_flag engine off
</IfModule>
</Directory>
Hope this helps!