docs init
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-11-02 01:38:06 +05:30
commit d9ca5f797c
71 changed files with 17911 additions and 0 deletions

15
nginx.conf Normal file
View File

@@ -0,0 +1,15 @@
server {
listen 80;
server_name docs.aetoskia.com;
location /mongo-ops/ {
alias /srv/docs/mongo-ops/site/;
index index.html;
}
# Optional: main landing page
location / {
alias /srv/docs/_index/;
index index.html;
}
}