Merge pull request #2828 from nextcloud/enh/2825/enable-http3

apache - expose udp for http3 to work
This commit is contained in:
Simon L 2023-06-26 12:39:31 +02:00 committed by GitHub
commit 24dc09ce94
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 1 deletions

View file

@ -16,6 +16,11 @@
"ip_binding": "%APACHE_IP_BINDING%", "ip_binding": "%APACHE_IP_BINDING%",
"port_number": "%APACHE_PORT%", "port_number": "%APACHE_PORT%",
"protocol": "tcp" "protocol": "tcp"
},
{
"ip_binding": "%APACHE_IP_BINDING%",
"port_number": "%APACHE_PORT%",
"protocol": "udp"
} }
], ],
"internal_port": "%APACHE_PORT%", "internal_port": "%APACHE_PORT%",

View file

@ -99,7 +99,7 @@
<input class="button" type="submit" value="Submit domain" /> <input class="button" type="submit" value="Submit domain" />
</form> </form>
{% if skip_domain_validation == false %} {% if skip_domain_validation == false %}
Make sure that this server is reachable on port 443 (port 443/tcp is open/forwarded in your firewall/router) and that you've correctly set up the DNS config for the domain that you enter (set the A record to your public ipv4-address and if you need ipv6, set the AAAA record to your public ipv6-address. A CNAME record if of course also possible). You should see hints on what went wrong if your domain does not get accepted in the top right corner.<br><br> Make sure that this server is reachable on port 443 (port 443/tcp is open/forwarded in your firewall/router and 443/udp as well if you want to enable http3) and that you've correctly set up the DNS config for the domain that you enter (set the A record to your public ipv4-address and if you need ipv6, set the AAAA record to your public ipv6-address. A CNAME record if of course also possible). You should see hints on what went wrong if your domain does not get accepted in the top right corner.<br><br>
<details> <details>
<summary>Click here for further hints</summary><br /> <summary>Click here for further hints</summary><br />
If you should not have a domain yet, you can get one for free e.g. from duckdns.org and others.<br><br> If you should not have a domain yet, you can get one for free e.g. from duckdns.org and others.<br><br>

View file

@ -136,6 +136,7 @@ You can check this on Linux by running: `uname -m`
### Which ports are mandatory to be open in your firewall/router? ### Which ports are mandatory to be open in your firewall/router?
Only those (if you access the Mastercontainer Interface internally via port 8080): Only those (if you access the Mastercontainer Interface internally via port 8080):
- `443/TCP` for the Apache container - `443/TCP` for the Apache container
- `443/UDP` if you want to enable http3 for the Apache container
- `3478/TCP` and `3478/UDP` for the Talk container - `3478/TCP` and `3478/UDP` for the Talk container
### Explanation of used ports: ### Explanation of used ports:
@ -143,6 +144,7 @@ Only those (if you access the Mastercontainer Interface internally via port 8080
- `80/TCP`: redirects to Nextcloud (is used for getting the certificate via ACME http-challenge for the Mastercontainer) - `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/forwarded in your firewall/router 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.) - `8443/TCP`: Mastercontainer Interface with valid certificate (only works if port 80 and 8443 are open/forwarded in your firewall/router 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/forwarded in your firewall/router - `443/TCP`: will be used by the Apache container later on and needs to be open/forwarded in your firewall/router
- `443/UDP`: will be used by the Apache container later on and needs to be open/forwarded in your firewall/router if you want to enable http3
- `3478/TCP` and `3478/UDP`: will be used by the Turnserver inside the Talk container and needs to be open/forwarded in your firewall/router - `3478/TCP` and `3478/UDP`: will be used by the Turnserver inside the Talk container and needs to be open/forwarded in your firewall/router
### How to run AIO on macOS? ### How to run AIO on macOS?