From 43c91ab294be75f3b209201b848d48611d046ab4 Mon Sep 17 00:00:00 2001 From: Justman10000 <49990629+Justman10000@users.noreply.github.com> Date: Wed, 27 Oct 2021 09:13:26 +0200 Subject: [PATCH] Add Require all granted to Apache virtual host --- .snippets/webservers/apache-nossl.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.snippets/webservers/apache-nossl.conf b/.snippets/webservers/apache-nossl.conf index d0fe8bdc..ec3f68b4 100644 --- a/.snippets/webservers/apache-nossl.conf +++ b/.snippets/webservers/apache-nossl.conf @@ -1,10 +1,14 @@ ServerName DocumentRoot "/var/www/pterodactyl/public" + AllowEncodedSlashes On + php_value upload_max_filesize 100M php_value post_max_size 100M + AllowOverride all + Require all granted