Display static page before redirect to the actual backend

316 Views Asked by At

I have a website with backend which is running with zope + Apache. Now before we decomission the website in 3 months, i would like to display a static page to whomever hits the site and then after 30 sec redirect to the actual website.Additional limitation is I don't know Zope and don't want to touch existing stack. Is there anyway i could introduce Nginx/haproxy infront and achieve this?

1

There are 1 best solutions below

4
Jürgen Gmach On

Your Apache is probably listening to port 80/443 currently.

You need to assign different ports, and let Nginx listen to port 80/443 to Apache, and forward all requests to Apache.

The Zope stack behind Apache does not need to be touched at all.