Code Monkey home page Code Monkey logo

Comments (9)

bradrydzewski avatar bradrydzewski commented on July 19, 2024

at the moment it needs to be enabled behind a reverse proxy (like nginx). the only caveat is that you also need to enable websockets, which looks something like this:

    # Proxy for websockets
    location = /feed {
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $remote_addr;
        proxy_set_header Host $http_host;

        proxy_pass http://127.0.0.1:8898;
        proxy_redirect off;

        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
    }

from gitness.

shalakhin avatar shalakhin commented on July 19, 2024

Thank you for the answer! I think it would be nice to add it to the README.md in case others want to enable HTTPS too.

from gitness.

bradrydzewski avatar bradrydzewski commented on July 19, 2024

will do!

also, the code change for adding SSL support to Drone is fairly simple. We can accept the key pair as command line args. If the args exists, we can start the server like this:

http.ListenAndServeTLS(addr,  "cert.pem", "key.pem", nil)

from gitness.

shalakhin avatar shalakhin commented on July 19, 2024

It would be awesome! Should I add PR or you’ll do it?

On Feb 25, 2014, at 9:21 AM, Brad Rydzewski [email protected] wrote:

will do!

also, the code change for adding SSL support to Drone is fairly simple. We can accept the key pair as command line args. If the args exists, we can start the server like this:

http.ListenAndServeTLS(addr, "cert.pem", "key.pem", nil)

Reply to this email directly or view it on GitHub.

from gitness.

bradrydzewski avatar bradrydzewski commented on July 19, 2024

PRs are always welcome :) but I'm happy to add the feature if you don't get around to it

from gitness.

shalakhin avatar shalakhin commented on July 19, 2024

Thank you! Sure, will be waiting for that feature :-)

On Feb 25, 2014, at 9:33 AM, Brad Rydzewski [email protected] wrote:

PRs are always welcome :) but I'm happy to add the feature if you don't get around to it


Reply to this email directly or view it on GitHub.

from gitness.

wolfeidau avatar wolfeidau commented on July 19, 2024

Was about to write a ticket for this.

Just spinning up drone at the moment to play around with, looks awesome but would love the option of HTTPS.

Will add some flags and listener code.

from gitness.

bradrydzewski avatar bradrydzewski commented on July 19, 2024

just merged

@OShalakhin you can use the --sslcert and --sslkey command line arguments to start drone with https support. It would look something like this:

droned --sslcert="path/to/cert.pem" --sslkey="/path/to/key.pem"

from gitness.

shalakhin avatar shalakhin commented on July 19, 2024

Thank you! Awesome! :)

from gitness.

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.