Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ AddEncoding gzip svgz
</IfModule>
<IfModule mod_dir.c>
DirectoryIndex index.php index.html
FallbackResource index.php
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm against this change - I tried to get owncloud properly running using FallbackResource and this did not really work out.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes - that will very likely cause problems. We really need some blackmagic such as https://github.com/owncloud/core/pull/14081/files#diff-8052c42ab3b8aa06a3f5f788a4ddccc2R52

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh sorry ... I didn't want to commit that initially ... this should just show what I tried.

</IfModule>
AddDefaultCharset utf-8
Options -Indexes
Expand Down
7 changes: 7 additions & 0 deletions config/config.sample.php
Original file line number Diff line number Diff line change
Expand Up @@ -985,4 +985,11 @@
*/
'copied_sample_config' => true,

/**
* If this option is set to 'true' all URL will be generated without the
* index.php. Keep in mind to setup your webserver to still match the URLs
* correct.
*/
'front_controller_active' => 'false'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not 100% sire if we should document this yet - I basically started out with this - but from my understanding we are not yet fully there.

But maybe I miss something ....


);