--- /tmp/default.conf	2024-10-27 19:03:44.014468131 +0100
+++ default.conf	2024-10-27 15:51:20.840141453 +0100
@@ -1,7 +1,7 @@
 ## Version 2018/03/06 - Changelog: https://github.com/linuxserver/docker-heimdall/commits/master/root/defaults/default
 
 server {
-	listen 80 default_server;
+	listen 8080;
 
 	listen 443 ssl;
 
@@ -37,3 +37,23 @@
 
 	}
 }
+
+server {
+  listen 80 default_server;
+
+  server_name _;
+
+  root /app/www/public;
+  index index.php index.html index.htm;
+
+  location /bookstack {
+    proxy_pass http://localhost:8080/;
+    proxy_redirect off;
+  }
+
+  location /bookstack/ {
+    proxy_pass http://localhost:8080/;
+    proxy_redirect off;
+  }
+
+}
