diff --git a/root/app/phpmyadmin/index.html b/root/app/phpmyadmin/index.html
new file mode 100644
index 0000000..2ac31be
--- /dev/null
+++ b/root/app/phpmyadmin/index.html
@@ -0,0 +1,40 @@
+
+
+ Upgrade Required!
+
+
+
+
+
Upgrade Required!
+
The application inside this image has been moved to a new folder.
+
You will need to update your /config/nginx/nginx.conf and /config/nginx/site-confs/default.conf in order for the application to work.
+
New config samples are located at /config/nginx/nginx.conf.sample and /config/nginx/site-confs/default.conf.sample
+
Please review our announcement: Significant changes to nginx based images
+
+
+
diff --git a/root/migrations/02-default-location b/root/migrations/02-default-location
new file mode 100644
index 0000000..f4079a6
--- /dev/null
+++ b/root/migrations/02-default-location
@@ -0,0 +1,10 @@
+#!/usr/bin/with-contenv bash
+
+DEFAULT_CONF="/config/nginx/site-confs/default.conf"
+OLD_ROOT="root /app/phpmyadmin;"
+NEW_ROOT="root /app/www/public;"
+
+if grep -q "${OLD_ROOT}" "${DEFAULT_CONF}";then
+ echo "updating root in ${DEFAULT_CONF}"
+ sed -i "s|${OLD_ROOT}|${NEW_ROOT}|" "${DEFAULT_CONF}"
+fi