v8-archive icon indicating copy to clipboard operation
v8-archive copied to clipboard

Publish changes for release 8.8.2

Open herrfinke opened this issue 3 years ago • 3 comments

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

herrfinke avatar Jul 26 '21 09:07 herrfinke

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 avatar Jul 26 '21 12:07 WoLfulus

@WoLfulus is there any progress, could you kindly inform us ?

emrahtoy avatar Sep 03 '21 12:09 emrahtoy

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!

WoLfulus avatar Sep 03 '21 15:09 WoLfulus