update to nextcloud 12

This commit is contained in:
sparklyballs 2017-05-22 13:41:58 +01:00
parent 4295126fc3
commit 007691caf8
3 changed files with 6 additions and 2 deletions

View File

@ -7,7 +7,7 @@ ARG VERSION
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
# package version
ENV NEXTCLOUD_VER="11.0.3"
ENV NEXTCLOUD_VER="12.0.0"
# environment settings
ENV NEXTCLOUD_PATH="/config/www/nextcloud"
@ -62,6 +62,7 @@ RUN \
php7-mbstring \
php7-mcrypt \
php7-memcached \
php7-opcache \
php7-pcntl \
php7-pdo_mysql \
php7-pdo_pgsql \

View File

@ -65,6 +65,8 @@ Access the webui at `<your-ip>:443`, for more information check out [Nextcloud][
Please note you will need a MySQL/MariaDB or other backend database to set this up. Also please look [here](https://docs.nextcloud.com/server/11/admin_manual/installation/system_requirements.html#database-requirements-for-mysql-mariadb) for how to configure your database with regard to binlog format and installation.
If updating to nextcloud 12 you will need to comment out line `add_header X-Frame-Options "SAMEORIGIN";` in the file /config/nginx/site-confs/default
## Info
* Monitor the logs of the container in realtime `docker logs -f nextcloud`.
@ -79,5 +81,6 @@ Please note you will need a MySQL/MariaDB or other backend database to set this
## Versions
+ **22.05.17:** Update to nextcloud 12.0, adding required dependecies and note about commenting out SAMEORIGIN; always line.
+ **03.05.17:** Use community repo of memcached.
+ **07.03.17:** Release into main repository and upgrade to php7 and Alpine 3.5.

View File

@ -20,7 +20,7 @@ server {
# Add headers to serve security related headers
add_header Strict-Transport-Security "max-age=15768000; includeSubDomains; preload;";
add_header X-Content-Type-Options nosniff;
add_header X-Frame-Options "SAMEORIGIN";
# add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "1; mode=block";
add_header X-Robots-Tag none;
add_header X-Download-Options noopen;