The geo/traccar port
traccar-6.10.0 – modern GPS tracking platform (cvsweb github mirror)
Description
Traccar is an open source GPS tracking system. It supports more than 170
GPS protocols and more than 1500 models of GPS tracking devices. Traccar
can be used with any major SQL database system. It also provides an easy
to use REST API.
Some of the available features include:
Real-time GPS tracking
Driver behaviour monitoring
Detailed and summary reports
Geofencing functionality
Alarms and notifications
Account and device management
Email and SMS support
WWW: https://www.traccar.org/
Readme
+-----------------------------------------------------------------------
| Running ${PKGSTEM} on OpenBSD
+-----------------------------------------------------------------------
Web Interface
=============
The default configuration makes traccar UI listen on localhost only.
The recommended way to access the service from the outside world is to use a
reverse proxy with SSL enabled.
The following is an example using nginx as an SSL reverse proxy:
server {
add_header Cache-Control no-cache;
add_header x-frame-options SAMEORIGIN;
add_header X-Content-Type-Options nosniff;
add_header X-XSS-Protection "1; mode=block";
listen 443;
listen [::]:443;
expires 31d;
ssl On;
ssl_certificate fullcert_nokey.pem;
ssl_certificate_key privkey.pem;
location / {
proxy_pass http://127.0.0.1:8082/;
proxy_set_header Host $host;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_buffering off;
proxy_connect_timeout 1d;
proxy_send_timeout 1d;
proxy_read_timeout 1d;
proxy_redirect off;
proxy_set_header Proxy "";
proxy_cookie_path /api "/api; secure; HttpOnly";
}
}
Open Network Ports
==================
By default, traccar will listen on many network ports. Each tracker protocol
requires its own open port, which requires a large number of file descriptors
and may conflict with other software.
There used to be a default.xml file, but there is no more. Although it will
still work if you still have it. But now, you need to put all your
configuration in ${SYSCONFDIR}/traccar/traccar.xml.
For example, to allow only teltonika and osmand protocols, add this:
teltonika,osmand
To avoid sending positions to a network-based reverse geocoder service:
false
Statistics
==========
To avoid sending "anonymous" reports to traccar.org, you can set this variable
""
Configuration migration to >=6.2
================================
If updating from traccar 6.1 or older, note that 6.2 has removed the
separate default.xml file. Previous versions of the OpenBSD package have
modified some of the defaults from upstream - you will need to merge
the log path change into traccar.xml, and you may want to merge the
other changes:
/var/log/traccar/tracker-server.log
127.0.0.1
""
Maintainer
Renaud Allard
Only for arches
aarch64 amd64 i386