File tree Expand file tree Collapse file tree
docs/Nextcloud/Docs/Installation Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,6 +22,10 @@ updates:
2222
2323import BuyMeACoffeeButton from ' @site/src/components/BuyMeACoffeeButton' ;
2424
25+ :::caution[ Facial Recognition]
26+ Facial recognition is currently non-functional until further notice.
27+ :::
28+
2529## ** Nextcloud Installation using Docker Build and Docker Compose**
2630
2731** _ This method includes Redis, MariaDB, Nextcloud Memories, and Office_ **
@@ -110,6 +114,8 @@ MARIADB_AUTO_UPGRADE=true
110114NEXTCLOUD_HOST=https://cloud.example.com
111115NEXTCLOUD_ALLOW_INSECURE=1 # (self-signed certs or no HTTPS)
112116NVIDIA_VISIBLE_DEVICES=all
117+ # Notify Push
118+ NEXTCLOUD_URL=http://localhost:80
113119# Collabora
114120// highlight-start
115121username=admin
@@ -418,6 +424,16 @@ Make sure to set `Groups` to `admin`
418424
419425![ Nextcloud Add Users1] ( /img/nextcloud/Adduser1.jpg )
420426
427+ ## ** Setting up Notify Push**
428+
429+ ` notify_push ` is included in the ` bankaitech/nextcloud ` image and provides instant client push notifications for real-time file sync.
430+
431+ After starting the containers, run the following command to add ` 127.0.0.1 ` to your trusted proxies to avoid CSP issues:
432+
433+ ``` bash
434+ docker exec -it -u 33 nextcloud php occ config:system:set trusted_proxies 1 --value=" 127.0.0.1"
435+ ```
436+
421437## ** Setting up Nextcloud Office (Collabora Code)**
422438
423439Head back over to your ` Administration Settings ` and scroll down on the left until you see ` Nextcloud Office `
Original file line number Diff line number Diff line change @@ -26,6 +26,10 @@ import BuyMeACoffeeButton from '@site/src/components/BuyMeACoffeeButton';
2626You can find prebuilt images [ Here] ( ../Pre-built%20Images.mdx )
2727:::
2828
29+ :::caution[ Facial Recognition]
30+ Facial recognition is currently non-functional until further notice.
31+ :::
32+
2933## ** Nextcloud Installation using Docker Build and Docker Compose**
3034
3135** _ This method includes Redis, MariaDB, and Nextcloud Memories_ **
@@ -108,6 +112,8 @@ MYSQL_USER=nextcloud
108112NEXTCLOUD_HOST=https://cloud.example.com
109113NEXTCLOUD_ALLOW_INSECURE=1 # (self-signed certs or no HTTPS)
110114NVIDIA_VISIBLE_DEVICES=all
115+ # Notify Push
116+ NEXTCLOUD_URL=http://localhost:80
111117```
112118
113119:::tip[ Info]
@@ -378,6 +384,16 @@ Make sure to set `Groups` to `admin`
378384
379385![ Nextcloud Add Users1] ( /img/nextcloud/Adduser1.jpg )
380386
387+ ## ** Setting up Notify Push**
388+
389+ ` notify_push ` is included in the ` bankaitech/nextcloud ` image and provides instant client push notifications for real-time file sync.
390+
391+ After starting the containers, run the following command to add ` 127.0.0.1 ` to your trusted proxies to avoid CSP issues:
392+
393+ ``` bash
394+ docker exec -it -u 33 nextcloud php occ config:system:set trusted_proxies 1 --value=" 127.0.0.1"
395+ ```
396+
381397## ** Installing Nextcloud Memories**
382398
383399<p >
You can’t perform that action at this time.
0 commit comments