mirror of
https://github.com/linuxserver/docker-nextcloud.git
synced 2026-02-19 23:03:50 +08:00
update to nextcloud 12
This commit is contained in:
parent
4295126fc3
commit
007691caf8
@ -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 \
|
||||
|
||||
@ -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.
|
||||
|
||||
@ -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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user