kopia lustrzana https://github.com/OpenDroneMap/WebODM
Merge pull request #1639 from as598466/master
commit
5343ebceaf
21
README.md
21
README.md
|
@ -15,6 +15,7 @@ A user-friendly, commercial grade software for drone image processing. Generate
|
|||
+ [Manage Processing Nodes](#manage-processing-nodes)
|
||||
+ [Enable MicMac](#enable-micmac)
|
||||
+ [Enable SSL](#enable-ssl)
|
||||
+ [Enable IPv6](#enable-ipv6)
|
||||
+ [Where Are My Files Stored?](#where-are-my-files-stored)
|
||||
+ [Common Troubleshooting](#common-troubleshooting)
|
||||
- [Images Missing from Lightning Assets](#images-missing-from-lightning-assets)
|
||||
|
@ -165,6 +166,26 @@ If you want to specify your own key/certificate pair, simply pass the `--ssl-key
|
|||
|
||||
Note! You cannot pass an IP address to the hostname parameter! You need a DNS record setup.
|
||||
|
||||
### Enable IPv6
|
||||
|
||||
Your installation must first have a public IPv6 address.
|
||||
To enable IPv6 on your installation, you need to activate IPv6 in Docker by adding the following to a file located at /etc/docker/daemon.json:
|
||||
```bash
|
||||
{
|
||||
"ipv6": true,
|
||||
"fixed-cidr-v6": "fdb4:4d19:7eb5::/64"
|
||||
}
|
||||
```
|
||||
Restart Docker:
|
||||
`systemctl restart docker`
|
||||
|
||||
To add IPv6, simply run:
|
||||
|
||||
`./webodm.sh restart --ipv6`
|
||||
|
||||
Note: When using `--ssl` mode, you cannot pass an IP address to the hostname parameter; you must set up a DNS AAAA record. Without `--ssl` mode enabled, access the site at (e.g., http://[2001:0db8:3c4d:0015::1]:8000). The brackets around the IPv6 address are essential!
|
||||
You can add a new NodeODM node in WebODM by specifying an IPv6 address. Don’t forget to include brackets around the address! e.g., [2001:0db8:fd8a:ae80::1]
|
||||
|
||||
### Where Are My Files Stored?
|
||||
|
||||
When using Docker, all processing results are stored in a docker volume and are not available on the host filesystem. There are two specific docker volumes of interest:
|
||||
|
|
Ładowanie…
Reference in New Issue