Skip to content

Commit db5a342

Browse files
committed
docs(nextcloud): add caution about non-functional facial recognition and setup instructions for Notify Push
1 parent 8518d4c commit db5a342

2 files changed

Lines changed: 32 additions & 0 deletions

File tree

docs/Nextcloud/Docs/Installation/Complete.mdx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ updates:
2222

2323
import 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
110114
NEXTCLOUD_HOST=https://cloud.example.com
111115
NEXTCLOUD_ALLOW_INSECURE=1 # (self-signed certs or no HTTPS)
112116
NVIDIA_VISIBLE_DEVICES=all
117+
# Notify Push
118+
NEXTCLOUD_URL=http://localhost:80
113119
# Collabora
114120
// highlight-start
115121
username=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

423439
Head back over to your `Administration Settings` and scroll down on the left until you see `Nextcloud Office`

docs/Nextcloud/Docs/Installation/Memories.mdx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ import BuyMeACoffeeButton from '@site/src/components/BuyMeACoffeeButton';
2626
You 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
108112
NEXTCLOUD_HOST=https://cloud.example.com
109113
NEXTCLOUD_ALLOW_INSECURE=1 # (self-signed certs or no HTTPS)
110114
NVIDIA_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>

0 commit comments

Comments
 (0)