diff --git a/.env.template b/.env.template
index a83bd171..a54df82e 100644
--- a/.env.template
+++ b/.env.template
@@ -10,3 +10,6 @@ START_ROOM_URL=/_/global/maps.workadventure.localhost/Floor0/floor0.json
# If you are using Coturn, this is the value of the "static-auth-secret" parameter in your coturn config file.
# Keep empty if you are sharing hard coded / clear text credentials.
TURN_STATIC_AUTH_SECRET=
+
+# The email address used by Let's encrypt to send renewal warnings (compulsory)
+ACME_EMAIL=
diff --git a/README.md b/README.md
index a8c186b6..26f1e816 100644
--- a/README.md
+++ b/README.md
@@ -25,13 +25,14 @@ docker-compose up
The environment will start.
-You should now be able to browse to http://workadventure.localhost/ and see the application.
+You should now be able to browse to http://play.workadventure.localhost/ and see the application.
+You can view the dashboard at http://workadventure.localhost:8080/
Note: on some OSes, you will need to add this line to your `/etc/hosts` file:
**/etc/hosts**
```
-workadventure.localhost 127.0.0.1
+127.0.0.1 workadventure.localhost
```
### MacOS developers, your environment with Vagrant
diff --git a/contrib/docker/docker-compose.prod.yaml b/contrib/docker/docker-compose.prod.yaml
index 22860748..c726ba84 100644
--- a/contrib/docker/docker-compose.prod.yaml
+++ b/contrib/docker/docker-compose.prod.yaml
@@ -10,7 +10,7 @@ services:
- --entrypoints.web.http.redirections.entryPoint.to=websecure
- --entrypoints.web.http.redirections.entryPoint.scheme=https
- --entryPoints.websecure.address=:443
- - --certificatesresolvers.myresolver.acme.email=d.negrier@thecodingmachine.com
+ - --certificatesresolvers.myresolver.acme.email=${ACME_EMAIL}
- --certificatesresolvers.myresolver.acme.storage=/acme.json
# used during the challenge
- --certificatesresolvers.myresolver.acme.httpchallenge.entrypoint=web
diff --git a/front/dist/.gitignore b/front/dist/.gitignore
index dd1fae3d..05c474ec 100644
--- a/front/dist/.gitignore
+++ b/front/dist/.gitignore
@@ -1,2 +1,3 @@
index.html
index.tmpl.html.tmp
+style.*.css
\ No newline at end of file
diff --git a/front/dist/index.tmpl.html b/front/dist/index.tmpl.html
index a2747de2..f57d512e 100644
--- a/front/dist/index.tmpl.html
+++ b/front/dist/index.tmpl.html
@@ -29,7 +29,6 @@