mirror of
https://github.com/plankanban/planka.git
synced 2026-02-24 19:08:59 +03:00
Planka SSL & API #31
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @nematollahian on GitHub (Oct 2, 2020).
Hello dears
I installed planka in my server but i cannot make it https and working just with http. I do not want to use nginx config to include my certificate and want to use docker compose instead. Would you please help me do this?
And second question is that i want to talk planka with api to update new changes in my help desk application through it. Does planka have any documents for this?
Thank you very much
@meltyshev commented on GitHub (Oct 5, 2020):
Hi! Currently, there is no simple config for SSL without a load balancer. It can be achieved with some code modifications and rebuild a docker file. You should change two files for that: provide an SSL option here
server/config/env/production.jsusing this documentation (certificate/key files should be added to the project before docker build command), change to HTTPS hereclient/src/constants/Config.js. Thendocker build -t planka .in the root folder. Now you can change the image indocker-compose.ymlfrommeltyshev/planka:latesttoplanka.API documentation will be done after we make a new role system. Didn't have time for that :(
@ghost commented on GitHub (Oct 19, 2020):
Is it planned to change anytime soon? Sails.js documentaion says:
Why isn't Plank compliant with that? What's the gap?
@meltyshev commented on GitHub (Dec 26, 2020):
@eran- you can add an Nginx container to the docker-compose, attach the volume there with config and certs. They correctly said that this is more a task of the proxy server. Also, every PaaS provider already working under a proxy server. We will add some information about how to achieve that locally in the documentation after release.
@wayneconnolly commented on GitHub (Jan 5, 2021):
This is NOT required by planka. You can easily use SSL via nginx-proxy-companion. After setting that up you can install planka via the docker-compose below after pointing a subdomain/domain that you point to your server. This will result in planka app running on https://planka.domain.tld
@TOWUK commented on GitHub (Aug 1, 2021):
how do I rebuild this docker to add ssl?
@wayneconnolly commented on GitHub (Sep 26, 2021):
You don't. The docker image is pre-built.