mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-09 23:00:58 +00:00
gui: Restrict GUI listening ports to >1024, add help (fixes #4020)
This adds a pattern validator to the GUI listen port field that checks for port numbers 1024 and above. Also adds a help link pointing to the (new) page talking about GUI listen port numbers. That page has information on how to work around the restriction, in general terms. Also changes the header from "GUI Listen Addresses" to the singular version, because we only support one listen address today. GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4116
This commit is contained in:
parent
7f5e236dd7
commit
26654df48c
@ -69,6 +69,7 @@
|
|||||||
"Enable NAT traversal": "Enable NAT traversal",
|
"Enable NAT traversal": "Enable NAT traversal",
|
||||||
"Enable Relaying": "Enable Relaying",
|
"Enable Relaying": "Enable Relaying",
|
||||||
"Enter a non-negative number (e.g., \"2.35\") and select a unit. Percentages are as part of the total disk size.": "Enter a non-negative number (e.g., \"2.35\") and select a unit. Percentages are as part of the total disk size.",
|
"Enter a non-negative number (e.g., \"2.35\") and select a unit. Percentages are as part of the total disk size.": "Enter a non-negative number (e.g., \"2.35\") and select a unit. Percentages are as part of the total disk size.",
|
||||||
|
"Enter a non-privileged port number (1024 - 65535).": "Enter a non-privileged port number (1024 - 65535).",
|
||||||
"Enter comma separated (\"tcp://ip:port\", \"tcp://host:port\") addresses or \"dynamic\" to perform automatic discovery of the address.": "Enter comma separated (\"tcp://ip:port\", \"tcp://host:port\") addresses or \"dynamic\" to perform automatic discovery of the address.",
|
"Enter comma separated (\"tcp://ip:port\", \"tcp://host:port\") addresses or \"dynamic\" to perform automatic discovery of the address.": "Enter comma separated (\"tcp://ip:port\", \"tcp://host:port\") addresses or \"dynamic\" to perform automatic discovery of the address.",
|
||||||
"Enter ignore patterns, one per line.": "Enter ignore patterns, one per line.",
|
"Enter ignore patterns, one per line.": "Enter ignore patterns, one per line.",
|
||||||
"Error": "Error",
|
"Error": "Error",
|
||||||
@ -92,6 +93,7 @@
|
|||||||
"GUI": "GUI",
|
"GUI": "GUI",
|
||||||
"GUI Authentication Password": "GUI Authentication Password",
|
"GUI Authentication Password": "GUI Authentication Password",
|
||||||
"GUI Authentication User": "GUI Authentication User",
|
"GUI Authentication User": "GUI Authentication User",
|
||||||
|
"GUI Listen Address": "GUI Listen Address",
|
||||||
"GUI Listen Addresses": "GUI Listen Addresses",
|
"GUI Listen Addresses": "GUI Listen Addresses",
|
||||||
"GUI Theme": "GUI Theme",
|
"GUI Theme": "GUI Theme",
|
||||||
"Generate": "Generate",
|
"Generate": "Generate",
|
||||||
|
@ -100,9 +100,12 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<div class="form-group">
|
<div class="form-group" ng-class="{'has-error': settingsEditor.Address.$invalid && settingsEditor.Address.$dirty}">
|
||||||
<label translate for="Address">GUI Listen Addresses</label>
|
<label translate for="Address">GUI Listen Address</label> <a href="https://docs.syncthing.net/users/guilisten.html" target="_blank"><span class="fa fa-fw fa-book"></span> <span translate>Help</span></a>
|
||||||
<input id="Address" class="form-control" type="text" ng-model="tmpGUI.address">
|
<input id="Address" name="Address" class="form-control" type="text" ng-model="tmpGUI.address" ng-pattern="/.*:0*((102[4-9])|(10[3-9][0-9])|(1[1-9][0-9][0-9])|([2-9][0-9][0-9][0-9])|([1-6]\d{4}))$/">
|
||||||
|
<p class="help-block" ng-show="settingsEditor.Address.$invalid" translate>
|
||||||
|
Enter a non-privileged port number (1024 - 65535).
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label translate for="User">GUI Authentication User</label>
|
<label translate for="User">GUI Authentication User</label>
|
||||||
|
Loading…
Reference in New Issue
Block a user