diff --git a/pica-whiteboard/Dockerfile b/pica-whiteboard/Dockerfile
index a59a8c5db0def6ee5c50aaeeb66c983eac0d4b61..dc150c2e15aee8149136d6c73f3c7cfe34c7f097 100644
--- a/pica-whiteboard/Dockerfile
+++ b/pica-whiteboard/Dockerfile
@@ -4,6 +4,8 @@ ENV WBVERSION=1.5 \
     SCVERSION=0.1.11
 
 RUN apk add --no-cache --virtual .download ca-certificates wget && \
+    apk add --no-cache nginx && \
+    mkdir /run/nginx && touch /run/nginx/nginx.pid && \
     wget https://github.com/cracker0dks/whiteboard/archive/v$WBVERSION.tar.gz && \
     wget https://github.com/aptible/supercronic/releases/download/v$SCVERSION/supercronic-linux-amd64 && \
     chmod +x supercronic-linux-amd64 && \
@@ -16,9 +18,11 @@ RUN apk add --no-cache --virtual .download ca-certificates wget && \
     apk del .download
 
 ADD entrypoint.sh /entrypoint.sh
+ADD default.conf /etc/nginx/conf.d/default.conf
+ADD index.html /var/www/localhost/htdocs/index.html
 
 RUN chmod +x /entrypoint.sh
 
-EXPOSE 8080
+EXPOSE 80
 
 ENTRYPOINT ["/entrypoint.sh"]
diff --git a/pica-whiteboard/default.conf b/pica-whiteboard/default.conf
new file mode 100644
index 0000000000000000000000000000000000000000..f4a85715b8de9429c96938e77e1575753d1d4130
--- /dev/null
+++ b/pica-whiteboard/default.conf
@@ -0,0 +1,19 @@
+server {
+	listen 80 default_server;
+	listen [::]:80 default_server;
+
+	root /var/www/localhost/htdocs;
+
+	index index.html;
+
+	location / {
+		try_files $uri $uri/ =404;
+	}
+
+	location /app/ {
+		proxy_pass http://whiteboard-app:8080/;
+		proxy_set_header Host $host;
+		proxy_set_header X-Real-IP $remote_addr;
+		proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+	}
+}
diff --git a/pica-whiteboard/docker-compose.yml b/pica-whiteboard/docker-compose.yml
index f8733545805657d17712d4ffa470588b4b2e6aaa..6d11290397767864218ee9ec4df4e220c3cc3d88 100644
--- a/pica-whiteboard/docker-compose.yml
+++ b/pica-whiteboard/docker-compose.yml
@@ -11,7 +11,7 @@ services:
     labels:
       traefik.http.routers.whiteboard-app.entrypoints: websecure
       traefik.http.routers.whiteboard-app.rule: Host(`whiteboard.picasoft.net`)
-      traefik.http.services.whiteboard-app.loadbalancer.server.port: 8080
+      traefik.http.services.whiteboard-app.loadbalancer.server.port: 80
       traefik.enable: true
     environment:
       STOP_APP: "0 0 * * *"
diff --git a/pica-whiteboard/entrypoint.sh b/pica-whiteboard/entrypoint.sh
index eee67969ad9c8d62743fa44b9e16269464a7204c..618a4d28422752ba64b8b12a30e62480fab82072 100644
--- a/pica-whiteboard/entrypoint.sh
+++ b/pica-whiteboard/entrypoint.sh
@@ -6,4 +6,5 @@ $STOP_APP pkill node
 $RESTART_APP cd /opt/whiteboard && node server.js --mode=production
 EOF
 node server.js --mode=production &
+nginx
 supercronic crontab
diff --git a/pica-whiteboard/index.html b/pica-whiteboard/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..fb553d345f07b2d8ed5f1ee38e854bf717a8b284
--- /dev/null
+++ b/pica-whiteboard/index.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<html>
+	<head>
+		<title>Whiteboard Picasoft</title>
+		<meta charset="utf-8" />
+	</head>
+	<body>
+		<h1>Whiteboard de Picasoft</h1>
+		<p>
+		Vous êtes sur le whiteboard hébergé par Picasoft, celui-ci est réinitialisé toutes les nuits (vers minuit)
+		</p>
+		<p>
+		<a href⁼"https://picasoft.net/co/cgu.html">CGU</a>
+		</p>
+	</body>
+</html>