taiga admin page

6,484 views
Skip to first unread message

rdegt...@gmail.com

unread,
Apr 27, 2015, 4:08:17 AM4/27/15
to tai...@googlegroups.com
Hello friends,

I see that on page <my.taiga.io>/admin I could find admin interface to manage all users and projects in Taiga. But I get 404 when trying to access this page.

Could somebody help newbie and guide me over this problem?)

Alejandro Alonso

unread,
Apr 28, 2015, 7:20:33 AM4/28/15
to rdegt...@gmail.com, tai...@googlegroups.com
Hello!,

Could you try with <my.taiga.io>/admin/ (adding a final slash)?

Regards!,



--

  
Alejandro Alonso Fernández  
CIO & Co-founder

www.kaleidos.net/FC8EAC/

dpo...@gmail.com

unread,
Jun 12, 2015, 8:27:02 AM6/12/15
to tai...@googlegroups.com
Hi Alejandro,

I tried adding the final slash to the URL but I still get your (great looking) 404 page.

Alejandro Alonso

unread,
Jun 12, 2015, 9:06:21 AM6/12/15
to dpo...@gmail.com, tai...@googlegroups.com
Could you paste here the url you are trying to access exactly and your nginx configuration please?

Regards!,

2015-06-12 14:27 GMT+02:00 <dpo...@gmail.com>:
Hi Alejandro,

I tried adding the final slash to the URL but I  still get your (great looking) 404 page.

--
You received this message because you are subscribed to the Google Groups "taigaio" group.
To unsubscribe from this group and stop receiving emails from it, send an email to taigaio+u...@googlegroups.com.
To post to this group, send an email to tai...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/taigaio/e32299ae-5a58-4e40-832e-4f2d61493a3a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Xavi Julián

unread,
Jun 12, 2015, 9:10:53 AM6/12/15
to Alejandro Alonso, dpo...@gmail.com, tai...@googlegroups.com
This should happen if you are not a project administrator. You should have a direct access to the admin section in the navigation bar in your peoject. Are you sure you are admin?


For more options, visit https://groups.google.com/d/optout.



--
  
Xavier Julián Olmos 
xavier...@kaleidos.net | Tel: (+34) 913562995                    
www.kaleidos.net

Daniel Polistchuck

unread,
Jun 12, 2015, 9:41:06 AM6/12/15
to Alejandro Alonso, tai...@googlegroups.com


Here's my nginx taiga site conf:

server {
    server_name taiga.bompracredito.com.br;
    server_name _;

    large_client_header_buffers 4 32k;

    client_max_body_size 50M;
    charset utf-8;

    access_log /home/ubuntu/logs/nginx.access.log;
    error_log /home/ubuntu/logs/nginx.error.log;

    location / {
        root /home/ubuntu/taiga-front/dist/;
        try_files $uri $uri/ /index.html;
    }

    location /api {
        proxy_set_header Host $http_host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Scheme $scheme;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_pass http://127.0.0.1:8001/api;
        proxy_redirect off;
    }

    location /static {
        alias /home/ubuntu/taiga-back/static;
    }

    location /media {
        alias /home/ubuntu/taiga-back/media;
    }
}

The URL is

http://taiga.bompracredito.com.br/admin/

I am using the initial "admin" user.

Cheers!

Alejandro Alonso

unread,
Jun 15, 2015, 1:51:09 AM6/15/15
to Daniel Polistchuck, tai...@googlegroups.com
Hello Daniel,

If you want to access to the django admin (we don't recommend using it for anything) you should add the following entry to your enginx:

    location /admin {
        proxy_set_header Host $http_host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Scheme $scheme;
        proxy_set_header X-Forwarded-Proto $scheme;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_pass http://127.0.0.1:8001/admin;
        proxy_redirect off;
    }

Regards!,

Daniel Polistchuck

unread,
Jun 15, 2015, 1:35:39 PM6/15/15
to Alejandro Alonso, tai...@googlegroups.com

Hi Alejandro,

The idea was not to access the django admin page, but taiga's. I can only find any general admin page, only the project one...

Alejandro Alonso

unread,
Jun 16, 2015, 2:25:38 AM6/16/15
to Daniel Polistchuck, tai...@googlegroups.com
Hello Daniel,

There is no general admin page for taiga, only the "per project admin page" and the django admin one.

Regards,

Daniel Polistchuck

unread,
Jun 18, 2015, 4:51:17 PM6/18/15
to Alejandro Alonso, tai...@googlegroups.com
Hi Alexandro,

Got it :)

Thank you
Reply all
Reply to author
Forward
0 new messages