monolang: add

Added mkdocs-git build files for monolang version.
This commit is contained in:
Luc Bijl 2025-07-20 13:50:42 +02:00
parent f60190aa2a
commit 51da297da3
4 changed files with 49 additions and 0 deletions

15
monolang/default.conf.env Normal file
View file

@ -0,0 +1,15 @@
server {
listen $PORT;
listen [::]:${PORT};
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50.html {
root /usr/share/nginx/html;
}
}