When i am trying to run taiga on https it gives me this screen it should take me to taiga home page of login but it is just showing me this page
Hi @Rutuja_Nar
This happens when you haven’t configured your web server correctly, instead of doing a proxy pass to port 9000 where taiga is, you are serving the statics of your server.
Check the configuration, it should be something like this:
server {
server_name taiga.mycompany.com;
# Logs and other configurations
# (...)
# TLS: Configure your TLS following the best practices inside your company
# (...)
# proxypass for taiga
location / {
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_redirect off;
proxy_pass http://localhost:9000/;
}
# proxypass for taiga-events (websockets)
location /events {
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_http_version 1.1;
proxy_connect_timeout 7d;
proxy_send_timeout 7d;
proxy_read_timeout 7d;
proxy_pass http://localhost:9000/events;
}
}
Best regards