-
Notifications
You must be signed in to change notification settings - Fork 110
Open
Description
Hello,
When the dashboard is behind a reverse proxy, a "Incompatible Browser" error message is shown.
Nginx example:
server {
listen 81;
server_name some.local;
access_log /tmp/some.log combined;
location / {
proxy_set_header X-Forwarded-Host $host:$server_port;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://dashboard.local:8070/team-sprint-tasks;
}
}
Apache example:
<VirtualHost *:80>
ServerName some.local
ProxyRequests off
ProxyPreserveHost on
<Location />
ProxyPass http://dashboard.local:8070/team-sprint-tasks
ProxyPassReverse http://dashboard.local:8070/team-sprint-tasks
Order allow,deny
Allow from all
</Location>
</VirtualHost>
This should work as the FAQ (http://www.cyclotron.io/faq.html) says "Can I Host My Dashboard on a Separate Domain?" that a reverse nginx proxy can be configured.
Do you have any ideas how can I set the dashboard behind the front server?
Thank you!
Metadata
Metadata
Assignees
Labels
No labels