Multiple changes to fix routing

This commit is contained in:
2025-01-24 10:45:22 +00:00
parent 334000e570
commit f99bc8a1e7
4 changed files with 12 additions and 3 deletions

View File

@@ -11,7 +11,7 @@
}
route /repo/* {
reverse_proxy localhost:1212
reverse_proxy repo-placeholder:80
}
}

View File

@@ -22,11 +22,19 @@ services:
volumes:
- caddy_data:/data
- ./caddy:/etc/caddy
- ./var/www/html/repo:/repo
restart: unless-stopped
labels:
- "io.containers.autoupdate=registry"
repo-placeholder:
image: docker.io/nginx:alpine
networks:
- am-d-model-network
expose:
- "80"
volumes:
- ./repo:/usr/share/nginx/html
networks:
am-d-model-network:
name: am-d-model-network

View File

@@ -5,7 +5,7 @@ export const navigation = {
toHome: () => goto("/"),
toAbout: () => goto("/about"),
toContact: () => goto("/contact"),
// toRepository: () => window.location.href = "/repo",
toRepository: () => window.location.href = "/repo",
to404: () => {
throw error(404, 'Page not found');
}

View File

@@ -8,6 +8,7 @@ const config = {
}),
kit: {
paths: {
base: '',
exclude: ['/repo']
},
adapter: adapter({