Doc Server can be adjusted to differents modes with Settings in Config file.
-Config file path with Settings is passed as argument to Doc Server executable as:
-docserver --config <CONFIG_PATH>
-
-It should be a TOML file-path with Configuration settings to run WebServer
, it is REQUIRED to run Doc Server
It is composed by the following parts:
-Paths, URLs, Web Server main settings (port, host, protocol, SSL certificates, etc)
-Signup and Signin settings: password, TOTP, admin fields, etc.
-Mail settings if enabled
-Stores locations for Users, Auths and Sessions
-Templates: tpls to render requests responses
-Pasetoken: paseto for token configurations
-UI where major user interface are defined:
-Assets links for JS and CSS
-web_menu_items as items to show in top menu navigator
-serv_paths where static content path are defined as is_restricted and with allowed roles
-On top of Configuration file:
-root_path = “sitehome”, the most important as root path, other settings attibutes ending with _path can have relative path to this one or their own absolute or relative paths.
-name = “docserver” is a name for service
-org = “ORG” an organization name
-verbose = 2 some debug info in requests handling is shown with values over 0
-templates_path = “templates”, templates path
-assets_url = “/assets” assets path for templates
-allow_origin = [“http://localhost:8080”] allow origins for access control allow origin webserver directive
-TLS certificates path can be provided in:
-cert_file = "cert/fullchain.pem"
-key_file = "cert/privkey.pem"
-
-To use HTTPS traffic set protocol to https rather than http
-protocol = "https"
-
-It is about how new users will be created, there are two option:
-Open by using a signup form with all details.
-invitation by adminitrators, new user would receive an invitation link (it would include some details like email, roles,etc) connected to a session token with expiration time in seconds, this link can be sent by email if is set in config. By using an invitation link new user can fill a signup form with all details.
-## How to signup by 'invitation' or 'open'
-signup_mode = "invitation"
-invite_expire = 900 # in seconds
-
-TOPT as 2FA by default is set to no but it can also be:
-optional to users settings, so they can activate or deactivate in signup and user settings edition.
-mandatory means users have to configure in signup process.
-TOPT can only be reset by user settings or administrators via user edition form
-# topt Mode: mandatory, optional, no (default)
-totp_mode = "optional"
-# totp Digits: 6 (default) or 8
-totp_digits = 6
-# topt Algorithm: sha1 (default), sha256, sha512
-totp_algorithm = "sha256"
-
-Doc Server use Rust crate zxcvbn for password strength estimator, it can be enforced to a value:
-password_score = 3
-
-admin_fields is a list of user fields or attributes to change only by administrators, user can only see their values.
-admin_fields = "roles,otp_base32,status"
-
-It can be set as true or false, smtp_auth is token encrypted that can be generated by script tools/get_mail_token.sh that runs Doc Server program using credentials from paseto section (public_path and secret_path), it can be included not encrypted but is highly not recomended.
---tools/get_mail_token.sh [mail_user] [mail_password] -Provides a token based in srcv pasetoken settings
-
As an option enviroment variables MAIL_USER and MAIL_PASSWORD can also be set before to run tools/get_mail_token.sh
-use_mail = true
-smtp = "mail.example.com"
-smtp_auth = "v4.public..."
-mail_from ="admini@example.com"
-
-Users and Sessions are stored in async sqlx to Sqlite or File storages, for larger use sqlx as Database Agnostic provides other SQL options
---Prefix sqlite:: is for SQLite storage, usually a file ends with .db suffix.
-
users_store_uri = "sqlite:PATH_TO_users.db"
-session_store_uri = "sqlite:PATH_TO_sessions.db"
-session_expire = 300
-
---Prefix file:/// if for FILE storage, value should be a directory. session_store_file value will be final file prefix follow by timestamp autogenerated value.
-
users_store_uri = "file:///PATH_TO_users_DIRECTORY"
-session_store_uri = "file:///PATH_TO_sessions_DIRECTORY"
-session_store_file = "session"
-session_expire = 300
-
---session_expire is a value in seconds for a session to expire ir is not used, with each request expire session is extended for same value.
-
Access policies to be enfoced for content access with Casbin require two file path:
-authz_model_path = "PATH_TO_model.conf"
-authz_policy_path = "PATH_TO_policy.csv"
-
-Tera template engine is used to to render response requests. Most of templates are HTML and in many cases use to include others from partials directory. Pre-render process is in charge of values setting.
-Templates suffixes indicate if is html or txt and ends with j2 as standard extension for jinja2 templating engine.
-Default templates_path = “templates” directory layout:
-├── home.html.j2
-├── invite_create.html.j2
-├── invite_mail.html.j2
-├── invite_mail.txt.j2
-├── invite_output.html.j2
-├── login.html.j2
-├── logout.html.j2
-├── pages
-│ └── terms-conditions.html.j2
-├── partials
-│ ├── footer.html.j2
-│ ├── form-password.html.j2
-│ ├── form-totp.html.j2
-│ ├── form-user.html.j2
-│ ├── header.html.j2
-│ ├── loading.html.j2
-│ ├── mini_navbar.html.j2
-│ ├── modal_edit_user.html.j2
-│ ├── _navbar.html.j2
-│ ├── navbar.html.j2
-│ └── symbols.html.j2
-├── signup.html.j2
-├── user_settings.html.j2
-└── users.html.j2
-
-Current templates use UnoCSS as CSS engine (compatible with Tailwindcss) and FLowbyte as CSS and JS component library, so they are added from UI configuration values
-[ui]
-css_link = "https://cdn.jsdelivr.net/npm/@unocss/reset/tailwind.min.css"
-js_link = "https://cdn.jsdelivr.net/npm/@unocss/runtime"
-other_css_link = "https://cdnjs.cloudflare.com/ajax/libs/flowbite/1.6.5/flowbite.min.css"
-other_js_link="https://cdnjs.cloudflare.com/ajax/libs/flowbite/1.6.5/flowbite.min.js"
-
-Other JS values are used for basic tasks in page interaction:
-[ui]
-main_js_link = "/assets/js/main.js"
-utils_js_link = "/assets/js/utils.js"
-
-A main.css is used for customized CSS, is loaded in partials/header.html.j2 template as (pay attention to asserts_url):
-/css/main.css
-
-Values under [tpls] section are mapped values for template filename used in Doc Server request handlers to render a response, so basically filenames in templates_path value directory.
-Contains values for templates render for assets files: js, css.
-Each web_menu_items entry set values (text, url, roles) for each navigation menu template used in pages.
-An entry for each static_content like in example bellow
-Example:
-[[serve_paths]]
-# Server relative Directory Path (sitehome/appdoc)
-srv_path = "Server DIRECTORY_PATH"
-# Absolute URL path for resquests
-url_path = "/appdoc"
-# Not found URL to be redirect
-not_found = ""
-# URL to be redirect if is not authorization found
-not_auth = "/login"
-# true or false to access control or not to this PATH
-is_restricted = true
-
--- -Access policies for serve_path.url_path should be in authz_policy_path file
-
Server severals static contents paths from one web server instance
-Protect access content with users authentication and authorizations
-Create keys and sessions to content access with asymmetric encrypted
-Handle and stored secure sessions and exchange it via cookies
-Provides users management creation, identification and admin with password and 2FA with optional mail service for notifications
-Some requests responses are created by a template engine, so can be customized to some use cases.
-Can trace access to logs storages
-Configurable service with settings via TOML file
-