You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
4. Create folder `dev` at the root of repository, extract there content of the desired archive with the [FRP](https://github.com/fatedier/frp/releases/latest) archive which is located at `exapps_dev` folder of this repo.
516
516
5. Edit the `data/nginx/vhost.d/nextcloud.local_location` file from the `nextcloud-docker-dev` to point `/exapps/` web route to the host:
517
517
```
518
-
proxy_pass http://172.17.0.1:8780;
518
+
proxy_pass http://172.17.0.1:8780/exapps/;
519
519
```
520
520
521
521
> **Note:** my original content from my dev machine of file `nextcloud.local_location`:
522
522
> ```nginx
523
523
> location /exapps/ {
524
-
> proxy_pass http://172.17.0.1:8780;
524
+
> proxy_pass http://172.17.0.1:8780/exapps/;
525
525
> }
526
526
> ```
527
527
6. Use `docker compose up -d --force-recreate proxy` command from Julius `nextcloud-docker-dev` to recreate the proxy container.
0 commit comments