Last active
April 13, 2018 16:54
-
-
Save messi89/37b3643a0dea217199dd2c95d7afe8cc to your computer and use it in GitHub Desktop.
Owncloud + ISPConfig : Fix for "No 'Authorization: Basic' header found"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if you have a webdav authentication problem with your owncloud instance on an ispconfig server, this gist is for you | |
Go to your site->options->Apache Directive and add : | |
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1 | |
Don't forget to increase max upload values, site->options-> custom php.ini : | |
post_max_size = 512M | |
upload_max_filesize = 512M |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment