diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2020-12-28 21:45:05 -0800 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2020-12-28 21:45:05 -0800 |
commit | 4f3d413a3003d7b9295c2e6801e7f3033738f65e (patch) | |
tree | 6b512462ec636b49e4001ab5017e8d1eb3f1535f /src/main/java/org/traccar/config/Keys.java | |
parent | 51704590a835057bf4850a5eaf8c5037d20f648a (diff) | |
download | trackermap-server-4f3d413a3003d7b9295c2e6801e7f3033738f65e.tar.gz trackermap-server-4f3d413a3003d7b9295c2e6801e7f3033738f65e.tar.bz2 trackermap-server-4f3d413a3003d7b9295c2e6801e7f3033738f65e.zip |
Migrate more keys
Diffstat (limited to 'src/main/java/org/traccar/config/Keys.java')
-rw-r--r-- | src/main/java/org/traccar/config/Keys.java | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/main/java/org/traccar/config/Keys.java b/src/main/java/org/traccar/config/Keys.java index ea3176afd..215b00805 100644 --- a/src/main/java/org/traccar/config/Keys.java +++ b/src/main/java/org/traccar/config/Keys.java @@ -20,6 +20,21 @@ import java.util.Collections; public final class Keys { /** + * Network interface for a the protocol. If not specified, server will bind all interfaces. + */ + public static final ConfigSuffix<String> PROTOCOL_ADDRESS = new ConfigSuffix<>( + ".address", + Collections.singletonList(KeyType.GLOBAL)); + + /** + * Port number for the protocol. Most protocols use TCP on the transport layer. Some protocols use UDP. Some + * support both TCP and UDP. + */ + public static final ConfigSuffix<Integer> PROTOCOL_PORT = new ConfigSuffix<>( + ".port", + Collections.singletonList(KeyType.GLOBAL)); + + /** * Connection timeout value in seconds. Because sometimes there is no way to detect lost TCP connection old * connections stay in open state. On most systems there is a limit on number of open connection, so this leads to * problems with establishing new connections when number of devices is high or devices data connections are @@ -193,6 +208,23 @@ public final class Keys { 600L); /** + * Optional parameter to specify network interface for web interface to bind to. By default server will bind to all + * available interfaces. + */ + public static final ConfigKey<String> WEB_ADDRESS = new ConfigKey<>( + "web.address", + Collections.singletonList(KeyType.GLOBAL)); + + /** + * Web interface TCP port number. By default Traccar uses port 8082. To avoid specifying port in the browser you + * can set it to 80 (default HTTP port). + */ + public static final ConfigKey<Integer> WEB_PORT = new ConfigKey<>( + "web.port", + Collections.singletonList(KeyType.GLOBAL), + 8082); + + /** * WebSocket connection timeout in milliseconds. Default timeout is 10 minutes. */ public static final ConfigKey<Long> WEB_TIMEOUT = new ConfigKey<>( |