Coder Social home page Coder Social logo

Docker compose file about traccar-docker HOT 2 CLOSED

traccar avatar traccar commented on August 22, 2024
Docker compose file

from traccar-docker.

Comments (2)

mgscreativa avatar mgscreativa commented on August 22, 2024

Got it working with this docker.compose.yml file

#docker-compose up -d
version: '2'
services:
    web:
        image: 'magnaz/traccar:debian'
        restart: always
        hostname: 'track.mgscreativa.com.ar'
        container_name: traccar
        ports:
            - '280:8082'
            - '5000-5150:5000-5150'
            - '5000-5150:5000-5150/udp'
        volumes:
            - '/etc/timezone:/etc/timezone:ro'
            - '/etc/localtime:/etc/localtime:ro'
            - '/media/data/traccar/logs:/opt/traccar/logs:rw'
            - '/media/data/traccar/conf/traccar.xml:/opt/traccar/conf/traccar.xml:ro'
            - '/media/data/traccar/data:/opt/traccar/data:rw'

To start it docker-compose up -d

Do you know how can I setup this to use HTTPS? I'm currently using ISPConfig with Lets'Encrypt enabled and the site works just fine, but enabling HTTPS proxy to docker image fails.

I'm using this apache proxy conf:

<Proxy *>
    Allow from localhost
</Proxy>

ProxyPreserveHost On
SSLProxyEngine On
RequestHeader set Front-End-Https "On"

ProxyPass /api/socket wss://docker-server-host.com:280/api/socket
ProxyPassReverse /api/socket wss://docker-server-host.com:280/api/socket

ProxyPass / https://docker-server-host.com:280/
ProxyPassReverse / https://docker-server-host.com:280/

With this config I can access http://track.xxxxxxxx.com but accessing https://track.xxxxxxxx.com throws a proxy error:

Proxy Error

The proxy server received an invalid response from an upstream server.
The proxy server could not handle the request GET /.

Reason: Error reading from remote server

Additionally, a 502 Bad Gateway error was encountered while trying to use an ErrorDocument to handle the request.

from traccar-docker.

mgscreativa avatar mgscreativa commented on August 22, 2024

Forget It, for HTTPS I got it working with this Apache directives. But first I enabled Let's Encrypt for the domain and then applied this in the options tab.

<Proxy *>
    Allow from localhost
</Proxy>

ProxyPreserveHost On
SSLProxyEngine On
RequestHeader set Front-End-Https "On"

ProxyPass /api/socket ws://docker-server-host.com:280/api/socket
ProxyPassReverse /api/socket ws://docker-server-host.com:280/api/socket

ProxyPass / http://docker-server-host.com:280/
ProxyPassReverse / http://docker-server-host.com:280/

from traccar-docker.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.