Difference between revisions of "Taiga"
(Added install notes.) |
m (→Install) |
||
| Line 35: | Line 35: | ||
| − | Make sure you set up the reverse proxy as the documentation says just don't forget to add a listen line: | + | Make sure you set up the reverse proxy exactly as the documentation says just don't forget to add a listen line: |
<source> | <source> | ||
listen 80; | listen 80; | ||
Revision as of 00:21, 14 April 2021
Install
The documentation is fairly good at describing what to do but here is a quick set guide.
First check you have git, docker and docker-compose installed at the versions it recommends.
git clone https://github.com/taigaio/taiga-docker
cd taia-docker
git checkout stable
Replace every instance of these with passwords in docker-compose.yml and docker-compose-inits.yml:
- POSTGRES_PASSWORD
- TAIGA_SECRET_KEY
- RABBITMQ_PASS
Edit these values to match your setup:
- TAIGA_SITES_SCHEME: http
- TAIGA_SITES_DOMAIN: example.com
- TAIGA_URL: "http://example.com"
- TAIGA_WEBSOCKETS_URL: "ws://example.com"
Then run:
./launch-taiga.sh # Or ./launch-all.sh if you want penpot too
# Wait a couple of minutes AFTER the command has FINISHED
./taiga-manage.sh createsuperuser
# If this command has errors and fails and says something about migrating either wait longer or run:
./taiga-manage.sh migrate
If you need to change the Taiga configuration just run the launch-taiga.sh/launch-all.sh again.
Make sure you set up the reverse proxy exactly as the documentation says just don't forget to add a listen line:
listen 80;
https
Https can be a bit tricky to setup at first but just make sure to make all of these listed changes and it should work:
First ensure the webserver is listening for https or port 443 - do not change the proxy target!
Then in docker-compose.yml make the following edits:
- TAIGA_SITES_SCHEME: "https"
- TAIGA_URL: "https://example.com"
- TAIGA_WEBSOCKETS_URL: "wss://taiga.organicdesign.fund"
There is no need to change the port at the bottom of the file.



