From 3747ba928ff573a8c50943ac8748ec2c24cbba09 Mon Sep 17 00:00:00 2001
From: Robin Appelman <icewind1991@gmail.com>
Date: Fri, 12 Aug 2011 09:46:35 +0200
Subject: [PATCH] Set max upload size to something sane

we cant use a very high value since some apache configurations dont seem to handle it properly
---
 .htaccess | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.htaccess b/.htaccess
index 23c90b26d8..92825ea92d 100644
--- a/.htaccess
+++ b/.htaccess
@@ -1,5 +1,5 @@
 ErrorDocument 404 //owncloud/core/templates/404.php
-php_value upload_max_filesize 2048G
-php_value post_max_size 2048G
+php_value upload_max_filesize 512M
+php_value post_max_size 512M
 SetEnv htaccessWorking true
 Options -Indexes
-- 
GitLab