diff --git a/template/web/wp-content/mu-plugins/studiometa-maintenance-mode/README.md b/template/web/wp-content/mu-plugins/studiometa-maintenance-mode/README.md
index b393a5a..340fc67 100644
--- a/template/web/wp-content/mu-plugins/studiometa-maintenance-mode/README.md
+++ b/template/web/wp-content/mu-plugins/studiometa-maintenance-mode/README.md
@@ -1,6 +1,6 @@
# Studio Meta maintenance mode
-Put your site under maintenance with a 503 HTTP status and a dedicated page.
+Put your site under maintenance depends on server environment variables.
## Usage
@@ -9,6 +9,6 @@ Put your site under maintenance with a 503 HTTP status and a dedicated page.
MAINTENANCE_ENABLED=true|false # Enable/Disable maitenance mode.
MAINTENANCE_IPS=42.42.42.42.42 # Exclude a list of IPs from maitenance.
```
-2. Customize the maintenance page thanks to `maintenance.php` and `maintenance.css` files.
+2. You can customize the maintenance page by adding a `maintenance.php` file in `WP_CONTENT_DIR` (see https://developer.wordpress.org/reference/functions/wp_maintenance/). You can find a maintenance page example in [this folder](`./example/maintenance.php`)
> If you use a cache plugin, don't forget to clean caches.
diff --git a/template/web/wp-content/mu-plugins/studiometa-maintenance-mode/example/maintenance.css b/template/web/wp-content/mu-plugins/studiometa-maintenance-mode/example/maintenance.css
new file mode 100644
index 0000000..5ce768c
--- /dev/null
+++ b/template/web/wp-content/mu-plugins/studiometa-maintenance-mode/example/maintenance.css
@@ -0,0 +1 @@
+h1 { color: red; }
diff --git a/template/web/wp-content/mu-plugins/studiometa-maintenance-mode/maintenance.php b/template/web/wp-content/mu-plugins/studiometa-maintenance-mode/example/maintenance.php
similarity index 85%
rename from template/web/wp-content/mu-plugins/studiometa-maintenance-mode/maintenance.php
rename to template/web/wp-content/mu-plugins/studiometa-maintenance-mode/example/maintenance.php
index 0b0f273..848458e 100644
--- a/template/web/wp-content/mu-plugins/studiometa-maintenance-mode/maintenance.php
+++ b/template/web/wp-content/mu-plugins/studiometa-maintenance-mode/example/maintenance.php
@@ -14,7 +14,7 @@