no indexing in generated htaccess
This commit is contained in:
parent
5aa8f16bbf
commit
0bf67298d1
2 changed files with 2 additions and 0 deletions
|
@ -297,6 +297,7 @@ class OC_FILES {
|
|||
$content.= "php_value upload_max_filesize $size\n";//upload limit
|
||||
$content.= "php_value post_max_size $size\n";
|
||||
$content.= "SetEnv htaccessWorking true\n";
|
||||
$content.= "Options -Indexes\n";
|
||||
@file_put_contents($SERVERROOT.'/.htaccess', $content); //supress errors in case we don't have permissions for it
|
||||
}
|
||||
}
|
||||
|
|
|
@ -188,6 +188,7 @@ class OC_SETUP {
|
|||
$content.= "php_value upload_max_filesize 20M\n";//upload limit
|
||||
$content.= "php_value post_max_size 20M\n";
|
||||
$content.= "SetEnv htaccessWorking true\n";
|
||||
$content.= "Options -Indexes\n";
|
||||
@file_put_contents($SERVERROOT.'/.htaccess', $content); //supress errors in case we don't have permissions for it
|
||||
|
||||
$content = "deny from all";
|
||||
|
|
Loading…
Reference in a new issue