Allow portbindings to be below 1024

This is required for example for adguard using port 53
This commit is contained in:
Johannes Zellner
2021-02-19 17:34:02 +01:00
parent f39fd36b85
commit cec4d51649
+1 -1
View File
@@ -132,7 +132,7 @@ angular.module('Application').controller('AppController', ['$scope', '$location'
$scope.users = [];
$scope.backupConfig = null;
$scope.HOST_PORT_MIN = 1024;
$scope.HOST_PORT_MIN = 1;
$scope.HOST_PORT_MAX = 65535;
$scope.ROBOTS_DISABLE_INDEXING_TEMPLATE = '# Disable search engine indexing\n\nUser-agent: *\nDisallow: /';