Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mailinabox
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
mailinabox
Commits
be2b5a62
Commit
be2b5a62
authored
Jun 14, 2015
by
Joshua Tauberer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ownCloud updated to version 8.0.4
parent
0cbba71c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
10 deletions
+9
-10
CHANGELOG.md
CHANGELOG.md
+1
-0
nginx-primaryonly.conf
conf/nginx-primaryonly.conf
+6
-8
owncloud.sh
setup/owncloud.sh
+2
-2
No files found.
CHANGELOG.md
View file @
be2b5a62
...
...
@@ -18,6 +18,7 @@ Control panel:
System:
*
The munin system monitoring tool is now installed and accessible at /admin/munin.
*
ownCloud updated to version 8.0.4.
v0.10 (June 1, 2015)
...
...
conf/nginx-primaryonly.conf
View file @
be2b5a62
...
...
@@ -30,8 +30,8 @@
fastcgi_param
SCRIPT_FILENAME
/
usr
/
local
/
lib
/
owncloud
/$
2
;
fastcgi_param
SCRIPT_NAME
$
1
$
2
;
fastcgi_param
PATH_INFO
$
3
;
# TODO: see the dispreferred "method 2" for xaccel at https://doc.owncloud.org/server/8.1/admin_manual/configuration_files/serving_static_files_configuration.html
fastcgi_param
MOD_X_ACCEL_REDIRECT_ENABLED
on
;
fastcgi_param
MOD_X_ACCEL_REDIRECT_PREFIX
/
owncloud
-
xaccel
;
fastcgi_read_timeout
630
;
fastcgi_pass
php
-
fpm
;
error_page
403
/
cloud
/
core
/
templates
/
403
.
php
;
...
...
@@ -39,15 +39,13 @@
client_max_body_size
1
G
;
fastcgi_buffers
64
4
K
;
}
location
^~ $
STORAGE_ROOT
/
owncloud
{
# This directory is for MOD_X_ACCEL_REDIRECT_ENABLED. It works a little weird.
# The full path on disk of the file is passed as the URL path. ownCloud 8 totally
# busted the sane way this worked in ownCloud 7. There's a pending change using
# a new parameter to make this make more sense.
# We need to only allow 'internal' redirects within nginx so that the filesystem
location
^~ /
owncloud
-
xaccel
/ {
# This directory is for MOD_X_ACCEL_REDIRECT_ENABLED. ownCloud sends the full file
# path on disk as a subdirectory under this virtual path.
# We must only allow 'internal' redirects within nginx so that the filesystem
# is not exposed to the world.
internal
;
alias
$
STORAGE_ROOT
/
owncloud
;
alias
/
;
}
location
~ ^/((
caldav
|
carddav
|
webdav
).*)$ {
# Z-Push doesn't like getting a redirect, and a plain rewrite didn't work either.
...
...
setup/owncloud.sh
View file @
be2b5a62
...
...
@@ -15,8 +15,8 @@ apt_install \
apt-get purge
-qq
-y
owncloud
*
# Install ownCloud from source of this version:
owncloud_ver
=
8.0.
3
owncloud_hash
=
3192f3d783f81247eaf2914df63afdd593def4e5
owncloud_ver
=
8.0.
4
owncloud_hash
=
625b1c561ea51426047a3e79eda51ca05e9f978a
# Migrate <= v0.10 setups that stored the ownCloud config.php in /usr/local rather than
# in STORAGE_ROOT. Move the file to STORAGE_ROOT.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment