Some Owncloud features (Namely contact editing) don't work with Lighttpd on Debian stable because it doesn't support the PATCH verb. Add instructions on how to patch that functionality in and build the resulting package.
ownCloud is now part of the official community repository in Archlinux. I updated description and links.
Signed-off-by: Morris Jobke <morris.jobke@gmail.com>
They are seen as notes otherwise.
Conflicts:
admin_manual/LDAP/CONFIGURATION.rst
admin_manual/config/Mail_Parameters.rst
admin_manual/config/Miscellaneous.rst
admin_manual/cron/Usage.rst
Moved SSL remark from nginx to general webserver section and elaborated more on the reasons why to use it.
Added sudo in various places where root permissions are required (but where there was no explicit mention of it).
Moved part of WebDAV remark from modules to be installed to webserver configuration, added note about disabling authentication.
Add SSL configuration for apache
And more
correct formatting, complete apache configuration
various improvements
formatting, reduce notes, more bullet lists, more detailed SSL note.
more formatting and other fixes
various fixes
add hint that mysql&apache are used in example
fix formatting for apache version script
Conflicts:
admin_manual/installation/installation_source.rst
This commits is a forward port of:
44d84353522b5a599b43cea6056e92e7726ae1a6
bf26aab24e0334cc2bfff9a4f834adbe4c99f5a2
c34ca50fe92e6d395f61eb7abb4917c8b910765a
Using the config before my commit (including "Order allow,deny") my apache (2.4.4) always showed an 403-Error on any OC page.
Don't know exactly why that line is bad, but Apache also recommends it this way. (http://httpd.apache.org/docs/2.4/upgrading.html#run-time)
And it works :)
SCRIPT_FILENAME is defined in /etc/nginx/fastcgi_params . For owncloud
we need to overwrite it, so php gets only the path/filename of the file
to be executed.
Also turn off access_log and 404 logging for robots.txt
I think we don't need to define access.log and error.log since owncloud does the logging automatically in /var/log/access.log and /var/log/error.log. Setting a log level here would even rule out the gui setting in the admin section of owncloud.
…and some little design fixes.
root path is normally /var/www. In default environment $server_name/htdocs throws a 404.
inlude fastcgi.conf throws 'open() "/etc/nginx/fastcgi.conf" failed (2: No such file or directory)', assuming fastcgi_params would be correct.
access_log main throws an 'unknown log format "main"', here I don't know how to fix it, so I commented it out for me. Please look into it!
First github-experience for me. If I could do something better please criticize.
Update Nginx configuration
Fixes a number of potential security holes. Avoids duplication.
TODO: Further restrict locations where .php files can be found.