Skip to content

Commit d51515b

Browse files
authored
fix: 404 documentation urls (#1)
HTML files are currently located at` /html/docs `: ![image](https://github.com/settlemint/btp-docs/assets/1754718/1906627b-839a-4cad-b691-932d92427ef4) but are requested as: `"GET /documentation/docs/using-platform/add-a-node-to-a-network/ HTTP/1.1", host: "patrick.settlemint.be"` resulting in Error: `[error] 29#29: *82 "/usr/share/nginx/html/documentation/docs/using-platform/add-a-node-to-a-network/index.html" is not found (2: No such file or directory)`
1 parent 4659cda commit d51515b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM nginxinc/nginx-unprivileged:1.25.4
22
LABEL org.opencontainers.image.source="https://github.com/settlemint/btp-docs"
33

4-
WORKDIR /usr/share/nginx/html
4+
WORKDIR /usr/share/nginx/html/documentation
55
COPY --chmod=0777 ./build/ /usr/share/nginx/html
66
COPY --chmod=0777 ./nginx.conf /etc/nginx/nginx.conf
77
COPY --chmod=0777 ./nginx.default.conf /etc/nginx/conf.d/default.conf

0 commit comments

Comments
 (0)