diff options
| -rw-r--r-- | README.md | 8 |
1 files changed, 5 insertions, 3 deletions
| @@ -75,12 +75,14 @@ If you need to access the Syncthing GUI from a different computer, you can allow | |||
| 75 | ```xml | 75 | ```xml |
| 76 | <gui enabled="true" tls="false" debugging="false"> | 76 | <gui enabled="true" tls="false" debugging="false"> |
| 77 | <address>127.0.0.1:40469</address> | 77 | <address>127.0.0.1:40469</address> |
| 78 | <apikey>KoafJAnTpYxPSuywYmk9fNP2gpuVLFfb</apikey> | ||
| 79 | <theme>black</theme> | ||
| 80 | ``` | 78 | ``` |
| 81 | 79 | ||
| 82 | Change the `<address>127.0.0.1:40469</address>` part to `<address>0.0.0.0:40469</address>` to allow connections from other computers. Be sure to disable this once you've got Syncthing setup for security. | 80 | Change it to the following, but be sure to disable it later for security: |
| 83 | 81 | ||
| 82 | ```xml | ||
| 83 | <gui enabled="true" tls="false" debugging="false"> | ||
| 84 | <address>0.0.0.0:40469</address> | ||
| 85 | ``` | ||
| 84 | 86 | ||
| 85 | 87 | ||
| 86 | 88 | ||