Apache owncloud-defaults.inc configuration example for CentOS Linux 7

Get the default configuration file owncloud-defaults.inc for Apache, optimized for CentOS Linux 7. This example configuration ensures optimal compatibility and performance for Apache, making it easy to set up and adjust to meet your needs.

Find and download the configuration file here: /etc/httpd/conf.d/owncloud-defaults.inc.

For more configurations and setup guides, visit our related files section to further customize your system.

    # These are based on the .htaccess file shipped by ownCloud, with
# appropriate adjustments for distribution packaging. Some directives
# that are irrelevant to the Fedora/EPEL ecosystem are omitted. This
# file contains directives that should be applied within the /owncloud
# filesystem; directives that should be applied site-wide when
# ownCloud is installed are placed directly in owncloud.conf.
#
# DO NOT EDIT THIS FILE DIRECTLY. To override any element of the
# packaged ownCloud configuration, create a new /etc/httpd/conf.d/
# file which will be read later than 'owncloud.conf'.

AllowOverride None

ErrorDocument 403 /owncloud/core/templates/403.php
ErrorDocument 404 /owncloud/core/templates/404.php

<IfModule mod_fcgid.c>
    <IfModule mod_setenvif.c>
        <IfModule mod_headers.c>
            SetEnvIfNoCase ^Authorization$ "(.+)" XAUTHORIZATION=$1
            RequestHeader set XAuthorization %{XAUTHORIZATION}e env=XAUTHORIZATION
        </IfModule>
    </IfModule>
</IfModule>

<IfModule mod_php5.c>
    php_value upload_max_filesize 10G
    php_value post_max_size 10G
    php_value memory_limit 512M
    php_value mbstring.func_overload 0
    php_value always_populate_raw_post_data -1
    php_value default_charset 'UTF-8'
    php_value output_buffering off
    <IfModule mod_env.c>
        SetEnv htaccessWorking true
    </IfModule>
</IfModule>

<IfModule mod_php7.c>
    php_value upload_max_filesize 10G
    php_value post_max_size 10G
    php_value memory_limit 512M
    php_value mbstring.func_overload 0
    php_value always_populate_raw_post_data -1
    php_value default_charset 'UTF-8'
    php_value output_buffering off
    <IfModule mod_env.c>
        SetEnv htaccessWorking true
    </IfModule>
</IfModule>

# The rewrites for legacy caldav and carddav URLs are omitted here
# because they do not work with Fedora's ownCloud directory layout.
# See https://github.com/owncloud/core/issues/243#issuecomment-75426453
<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteBase /owncloud/
    RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
    RewriteRule ^remote/(.*) remote.php [QSA,L]
</IfModule>

AddDefaultCharset utf-8
Options -Indexes

<IfModule pagespeed_module>
    ModPagespeed Off
</IfModule>

<IfModule mod_headers.c>
    <FilesMatch "\.(css|js)$">
        Header set Cache-Control "max-age=7200, public"
    </FilesMatch>
</IfModule>

    
  

Config Details

Location
/etc/httpd/conf.d/owncloud-defaults.inc
Operating system
CentOS Linux 7
Length
73 lines
MD5 checksum
18d878f8af8f997bd21ebb0a34d898b4

Usage

Download the raw file with wget or curl

Wget

wget -O owncloud-defaults.inc.example https://exampleconfig.com/static/raw/apache/centos7/etc/httpd/conf.d/owncloud-defaults.inc

cURL

curl https://exampleconfig.com/static/raw/apache/centos7/etc/httpd/conf.d/owncloud-defaults.inc > owncloud-defaults.inc.example