Add Docsify docs server with nginx

Move docs into docs/ directory, add Docsify for markdown rendering.
Standalone Docker stack (nginx:alpine) on port 8090.
wiring.html served as native HTML with correct MIME type.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
sm
2026-02-25 19:15:21 +03:00
parent c76ca89cc9
commit 1de3ffa1d7
8 changed files with 324 additions and 24 deletions

20
nginx.conf Normal file
View File

@@ -0,0 +1,20 @@
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
types {
text/html html;
text/markdown md;
text/css css;
application/javascript js;
application/json json;
image/png png;
image/jpeg jpg jpeg;
image/svg+xml svg;
}
location / {
try_files $uri $uri/ /index.html;
}
}