Talk:Nextcloud

From SME Server
Revision as of 13:48, 2 November 2016 by RequestedDeletion (talk | contribs) (quick note on apache settings)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Apache settings / custom template

/etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf/nextcloud

# Nextcloud (sub-domain) settings

<Directory /opt/nextcloud>
AddType application/x-httpd-php .php
php_admin_value open_basedir /opt/nextcloud:/dev/urandom:/tmp:/home/e-smith/files/nextcloud
php_admin_flag allow_url_fopen on
php_admin_flag allow_override all
php_admin_flag followsymlinks enabled
Options None
order deny,allow
deny from all
allow from all
AuthType Basic
AuthBasicProvider external
AuthExternal pwauth
</Directory>

# End of Nextcloud settings