Warning: If this is a folder, all contents including subfolders and documents will be deleted.
Define path-based access rules for sections of your wiki, then assign users to groups in the Users tab. Rules are evaluated in order. First match wins.
Create and manage backups of your wiki data. Backups include all documents, images, and configuration files.
Configuration is stored in data/config.yaml and will be created automatically on first run with default values. You can modify this file to customize your wiki:
server:
host: 0.0.0.0
port: 8080
# When set to true, allows cookies to be sent over non-HTTPS connections.
# WARNING: Only enable this in trusted environments like a homelab
# where HTTPS is not available. This reduces security by allowing
# cookies to be transmitted in plain text.
allow_insecure_cookies: true
# Enable native TLS. When true, application will run over HTTPS using the
# supplied certificate and key paths.
ssl: false
ssl_cert: ""
ssl_key: ""
wiki:
root_dir: "data"
documents_dir: "documents"
title: "📚 Wiki-Go"
owner: "wiki.example.com"
notice: "Copyright 2025 © All rights reserved."
timezone: "America/Vancouver"
private: false
disable_comments: false
disable_file_upload_checking: false
enable_link_embedding: true
hide_attachments: false
disable_content_max_width: false
max_versions: 10
# Maximum file upload size in MB
max_upload_size: 10
# Default language for the wiki interface (en, es, etc.)
language: en
security:
login_ban:
# Enable protection against brute force login attacks
enabled: true
# Number of failed attempts before triggering a ban
max_failures: 5
# Time window in seconds for counting failures
window_seconds: 180
# Duration in seconds for the first ban
initial_ban_seconds: 60
# Maximum ban duration in seconds (24 hours)
max_ban_seconds: 86400
users:
- username: admin
password: <bcrypt-hashed-password>
role: admin
LeoMoon Wiki-Go comes with default favicons, but you can easily replace them with your own:
To use custom favicons, place your files in the data/static/ directory with the following names:
favicon.ico - Standard favicon format (used by older browsers)favicon.png - PNG format faviconfavicon.svg - SVG format favicon (recommended for best quality at all sizes)The application will automatically detect and use your custom favicon files without requiring a restart.
SVG format is recommended for favicons as it scales well to different sizes while maintaining crisp quality.
You can add a custom logo to display in the sidebar above your wiki title:
Create a logo file in one of the supported formats:
logo.svg - SVG format (recommended for best quality)logo.png - PNG format (alternative option)Place the logo file in the data/static/ directory.
The logo will automatically appear in the sidebar above your wiki title.
Notes:
You can add a banner image that will appear at the top of all documents:
Create a banner image in one of the supported formats:
banner.png - PNG format (recommended for best quality)banner.jpg - JPG format (alternative option)Place the banner file in the data/static/ directory.
The banner will automatically appear at the top of all document content.
Notes:
data/static/ directoryLeoMoon Wiki-Go includes a user management system with different permission levels:
The default admin credentials are:
adminadminIt's recommended to change these credentials immediately after first login.
Comments
Please login to leave a comment.
No comments yet. Be the first to comment!