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.
To post to this group, send email to tai...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/taigaio/CAFG5%2B%2Bvf0iUdy0QX3eDUsmDNd7LKGxHRPxZQ3%2BNYFaJPLGS%3DNg%40mail.gmail.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!
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...