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
0899952f
Commit
0899952f
authored
Aug 11, 2014
by
jkaberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
initial owncloud port, untested and unfinished
parent
1312b025
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
85 additions
and
13 deletions
+85
-13
nginx.conf
conf/nginx.conf
+38
-12
owncloud.sh
setup/owncloud.sh
+46
-0
start.sh
setup/start.sh
+1
-1
No files found.
conf/nginx.conf
View file @
0899952f
...
@@ -26,27 +26,53 @@ server {
...
@@ -26,27 +26,53 @@ server {
root
$ROOT
;
root
$ROOT
;
index
index.html
index.htm
;
index
index.html
index.htm
;
# Roundcube Webmail configuration.
# ownCloud configuration
rewrite
^/mail
$
/mail/
redirect
;
# TODO: we should support owncloud to be loaded from www root, but for now we dont :-)
rewrite
^/mail/
$
/mail/index.php
;
client_max_body_size
10G
;
# set max upload size
location
/mail/
{
fastcgi_buffers
64
4K
;
index
index.php
;
alias
/usr/local/lib/roundcubemail/
;
location
=
/robots.txt
{
allow
all
;
log_not_found
off
;
access_log
off
;
}
}
location
~
/mail/config/.*
{
# A ~-style location is needed to give this precedence over the next block.
error_page
403
/owncloud/core/templates/403.php
;
return
403
;
error_page
404
/owncloud/core/templates/404.php
;
rewrite
^/caldav(.*)
$
/owncloud/remote.php/caldav
$1
redirect
;
rewrite
^/carddav(.*)
$
/owncloud/remote.php/carddav
$1
redirect
;
rewrite
^/webdav(.*)
$
/owncloud/remote.php/webdav
$1
redirect
;
rewrite
^/owncloud
$
/owncloud/
redirect
;
rewrite
^/owncloud/
$
/owncloud/index.php
;
location
/owncloud/
{
index
index.php
;
alias
/usr/local/lib/owncloud/
;
}
}
location
~
/mail/.*\.php
{
location
~
/owncloud/.*\.php
{
include
fastcgi_params
;
include
fastcgi_params
;
fastcgi_split_path_info
^/
mail
(/.*)()
$
;
fastcgi_split_path_info
^/
owncloud
(/.*)()
$
;
fastcgi_index
index.php
;
fastcgi_index
index.php
;
fastcgi_param
SCRIPT_FILENAME
/usr/local/lib/
roundcubemail
/
$fastcgi_script_name
;
fastcgi_param
SCRIPT_FILENAME
/usr/local/lib/
owncloud
/
$fastcgi_script_name
;
fastcgi_pass
unix:/tmp/php-fastcgi.www-data.sock
;
fastcgi_pass
unix:/tmp/php-fastcgi.www-data.sock
;
client_max_body_size
20M
;
client_max_body_size
20M
;
}
}
location
~
^/(data|config|\.ht|db_structure\.xml|README)
{
deny
all
;
}
# Optional: set long EXPIRES header on static assets
location
~
*
^.+
\
.(jpg|jpeg|gif|bmp|ico|png|css|js|swf)
$
{
expires
30d
;
# Optional: Don't log access to assets
access_log
off
;
}
# Webfinger configuration.
# Webfinger configuration.
# TODO: fix this for owncloud: http://doc.owncloud.org/server/5.0/admin_manual/installation/installation_others.html
location
=
/.well-known/webfinger
{
location
=
/.well-known/webfinger
{
include
fastcgi_params
;
include
fastcgi_params
;
fastcgi_param
SCRIPT_FILENAME
/usr/local/bin/mailinabox-webfinger.php
;
fastcgi_param
SCRIPT_FILENAME
/usr/local/bin/mailinabox-webfinger.php
;
...
...
setup/owncloud.sh
0 → 100644
View file @
0899952f
# Owncloud
##########################
# TODO: Write documentation on what we're doing here :-)
source
setup/functions.sh
# load our functions
source
/etc/mailinabox.conf
# load global vars
apt_install
\
dbconfig-common
\
php5-cli php5-sqlite php5-gd php5-curl php5-common php5-cgi sqlite3 php-pear php-apc curl libapr1 libtool curl libcurl4-openssl-dev php-xml-parser
\
php5 php5-dev php5-gd php5-fpm memcached php5-memcache unzip
apt-get purge
-qq
-y
owncloud
*
# Install ownCloud from source if it is not already present
# TODO: Check version?
if
[
!
-d
/usr/local/lib/owncloud
]
;
then
rm
-f
/tmp/owncloud.zip
wget
-qO
/tmp/owncloud.zip https://download.owncloud.org/community/owncloud-7.0.1.zip
unzip /tmp/owncloud.zip
-d
/usr/local/lib
rm
-f
/tmp/owncloud.zip
fi
# Create a configuration file.
# TODO:
# Set permissions
mkdir
-p
$STORAGE_ROOT
/owncloud
chown
-R
www-data.www-data
$STORAGE_ROOT
/owncloud /usr/local/lib/owncloud
# Download and install the mail app
if
[
!
-d
/usr/local/lib/owncloud/apps/mail
]
;
then
rm
-f
/tmp/owncloud_mail.zip
wget
-qO
/tmp/owncloud_mail.zip https://github.com/owncloud/mail/archive/master.zip
unzip /tmp/owncloud_mail.zip
-d
/usr/local/lib/owncloud/apps
mv
/usr/local/lib/owncloud/apps/mail-master /usr/local/lib/owncloud/apps/mail
rm
-f
/tmp/owncloud.zip
fi
# Currently the mail app dosnt ship with the dependencies, so we need to install them
cd
/usr/local/lib/owncloud/apps/mail
curl
-sS
https://getcomposer.org/installer | php
php composer.phar
install
# TODO: enable mail app in ownCloud config?
setup/start.sh
View file @
0899952f
...
@@ -273,7 +273,7 @@ EOF
...
@@ -273,7 +273,7 @@ EOF
.
setup/dkim.sh
.
setup/dkim.sh
.
setup/spamassassin.sh
.
setup/spamassassin.sh
.
setup/web.sh
.
setup/web.sh
.
setup/
webmail
.sh
.
setup/
owncloud
.sh
.
setup/zpush.sh
.
setup/zpush.sh
.
setup/management.sh
.
setup/management.sh
...
...
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