Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-08-12 11:46:35 +0400
committerRobin Appelman <icewind1991@gmail.com>2011-08-12 11:46:35 +0400
commit3747ba928ff573a8c50943ac8748ec2c24cbba09 (patch)
treeb70525d3fa7a1dd25462ddce5b6ea4ea32137c03 /.htaccess
parentdb4fccce51c3aa3a2b7721b3266d5fe82e48640d (diff)
Set max upload size to something sane
we cant use a very high value since some apache configurations dont seem to handle it properly
Diffstat (limited to '.htaccess')
-rw-r--r--.htaccess4
1 files changed, 2 insertions, 2 deletions
diff --git a/.htaccess b/.htaccess
index 23c90b26d8c..92825ea92d5 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