mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-03-04 01:38:41 +08:00
move sections
Signed-off-by: szaimen <szaimen@e.mail.de>
This commit is contained in:
parent
fe83acd3cc
commit
dbef6f1d4a
1 changed files with 12 additions and 12 deletions
24
readme.md
24
readme.md
|
@ -79,6 +79,18 @@ Nextcloud AIO is inspired by projects like Portainer that allow to manage the do
|
||||||
### Are reverse proxies supported?
|
### Are reverse proxies supported?
|
||||||
Yes. Please refer to the following documentation on this: [reverse-proxy.md](https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md)
|
Yes. Please refer to the following documentation on this: [reverse-proxy.md](https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md)
|
||||||
|
|
||||||
|
### Which ports are mandatory to be open?
|
||||||
|
Only those (if you acces the Mastercontainer Interface internally via port 8080):
|
||||||
|
- `443/TCP` for the Apache container
|
||||||
|
- `3478/TCP` and `3478/UDP` for the Talk container
|
||||||
|
|
||||||
|
### Explanation of used ports:
|
||||||
|
- `8080/TCP`: Mastercontainer Interface with self-signed certificate (works always, also if only access via IP-address is possible, e.g. `https://internal.ip.address:8080/`)
|
||||||
|
- `80/TCP`: redirects to Nextcloud (is used for getting the certificate via ACME http-challenge for the Mastercontainer)
|
||||||
|
- `8443/TCP`: Mastercontainer Interface with valid certificate (only works if port 80 and 8443 are open and you point a domain to your server. It generates a valid certificate then automatically and access via e.g. `https://public.domain.com:8443/` is possible.)
|
||||||
|
- `443/TCP`: will be used by the Apache container later on and needs to be open
|
||||||
|
- `3478/TCP` and `3478/UDP`: will be used by the Turnserver inside the Talk container and needs to be open
|
||||||
|
|
||||||
### How to run it on macOS?
|
### How to run it on macOS?
|
||||||
On macOS, there is one specialty in comparison to Linux: instead of using `--volume /var/run/docker.sock:/var/run/docker.sock:ro`, you need to use `--volume /var/run/docker.sock.raw:/var/run/docker.sock:ro` to run it after you installed Docker Desktop. Apart from that it should work and behave the same like on Linux.
|
On macOS, there is one specialty in comparison to Linux: instead of using `--volume /var/run/docker.sock:/var/run/docker.sock:ro`, you need to use `--volume /var/run/docker.sock.raw:/var/run/docker.sock:ro` to run it after you installed Docker Desktop. Apart from that it should work and behave the same like on Linux.
|
||||||
|
|
||||||
|
@ -101,18 +113,6 @@ nextcloud/all-in-one:latest
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
### Which ports are mandatory to be open?
|
|
||||||
Only those (if you acces the Mastercontainer Interface internally via port 8080):
|
|
||||||
- `443/TCP` for the Apache container
|
|
||||||
- `3478/TCP` and `3478/UDP` for the Talk container
|
|
||||||
|
|
||||||
### Explanation of used ports:
|
|
||||||
- `8080/TCP`: Mastercontainer Interface with self-signed certificate (works always, also if only access via IP-address is possible, e.g. `https://internal.ip.address:8080/`)
|
|
||||||
- `80/TCP`: redirects to Nextcloud (is used for getting the certificate via ACME http-challenge for the Mastercontainer)
|
|
||||||
- `8443/TCP`: Mastercontainer Interface with valid certificate (only works if port 80 and 8443 are open and you point a domain to your server. It generates a valid certificate then automatically and access via e.g. `https://public.domain.com:8443/` is possible.)
|
|
||||||
- `443/TCP`: will be used by the Apache container later on and needs to be open
|
|
||||||
- `3478/TCP` and `3478/UDP`: will be used by the Turnserver inside the Talk container and needs to be open
|
|
||||||
|
|
||||||
### How to run `occ` commands?
|
### How to run `occ` commands?
|
||||||
Simply run the following: `sudo docker exec -it nextcloud-aio-nextcloud php occ your-command`. Of course `your-command` needs to be exchanged with the command that you want to run.
|
Simply run the following: `sudo docker exec -it nextcloud-aio-nextcloud php occ your-command`. Of course `your-command` needs to be exchanged with the command that you want to run.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue