Right now, I am migrating the domain of my app from app.example.com
to app.newexample.com
using the following nginx
config:
server {
server_name app.example.com;
location /app/ {
rewrite ^/app/(.*)$ http://app.newexample.com/$1;
}
}
I need to show-up a popup-banner to notify the user of the domain name migration.
And I want to this based upon the referrer
or some-kind-of-other-header at app.newexample.com
But how can I attach an extra header on the above rewrite
so that the javascript would detect that header and show the banner only when that header is present coz the user going directly at app.newexample.com
should not see that popup-banner?