diff --git a/docs/locales_settings.md b/docs/locales_settings.md new file mode 100644 index 0000000..6cf14a4 --- /dev/null +++ b/docs/locales_settings.md @@ -0,0 +1,51 @@ +# Locales config settings + +## locales.toml + +```toml +[en] + id = "en" + [en.itms] + html_title = "Doc Server" + html_header = "" + html_footer = "" + req_expired = "Request expired" + expired_in = "Expired in" + seconds = "seconds" + try_again = "try again !" + principal = "Doc Server" + log_req = "Log Req" + log_data = "Log Data" + sign_in = "Sign In" + list = "List" + profiles = "Profiles" + reload = "Reload" + search = "Search" + done = "Done" + info = "Info" + log = "Log" + trace = "Trace" + debug = "Debug" + error = "Error" + warn = "Warn" + rust = "Rust" + unknown = "Unknown" + all = "All" + view_settings = "View Conf." + documentation = "Documentation" + logfrmt_sel_enter = "Sel.Enter" + logfrmt_rev_data = "Last" + log_timestamp = "Time" + log_loglevel = "Level" + log_where = "Where" + log_source = "Source" + log_line = "Line" + log_note = "Note" + view_other_options = "More-Ops." + main = "Main" + ogs_list = "Logs List" + curr_env = "Environment" + curr_env_aut = "Env. Auth" + howitwasmade = "How was made" +``` + diff --git a/docs/menu_items_settings.md b/docs/menu_items_settings.md new file mode 100644 index 0000000..822e067 --- /dev/null +++ b/docs/menu_items_settings.md @@ -0,0 +1,42 @@ +# Menu Items config settings + +## menu_items.toml + +```toml +[[web_menu_items]] +# ~home text part will be removed, it is to indicate it is a home link +text = "~home" +url = "/" +roles = [] + +[[web_menu_items]] +typ = "icon" +srctyp = "mdbook" +text = "DocServer" +url = "/docserver" +roles = ["dev"] +[[web_menu_items.items]] +typ = "icon" +srctyp = "mdbook" +text = "Documentation" +url = "/docserver" +roles = ["dev"] +[[web_menu_items.items]] +typ = "icon" +srctyp = "source" +text = "Source Docs" +url = "/srcdocserver" +roles = ["dev"] +[[web_menu_items.items]] +typ = "icon" +srctyp = "git" +text = "Git Repo" +url = "docserver" +roles = ["dev"] + +[[web_menu_items]] +text = "Users" +url = "/users" +roles = ["admin"] +``` + diff --git a/docs/serv_paths_settings.md b/docs/serv_paths_settings.md new file mode 100644 index 0000000..4b7893d --- /dev/null +++ b/docs/serv_paths_settings.md @@ -0,0 +1,52 @@ +# Serv Paths config settings + +## serv_paths.toml + +```toml +[[serv_paths]] +src_path = "assets" +url_path = "/assets" +not_found = "" +not_auth = "/" +is_restricted = false + +[[serv_paths]] +src_path = "html" +url_path = "/html" +not_found = "" +not_auth = "/" +is_restricted = false + +[[serv_paths]] +src_path = "docs" +url_path = "/docs" +not_found = "" +not_auth = "/login" +is_restricted = true + +[[serv_paths]] +src_path = "dist" +url_path = "/dist" +not_found = "" +not_auth = "/dist" +is_restricted = false + +[[serv_paths]] +src_path = "docserver" +url_path = "/docserver" +not_found = "" +roles = "dev" +redirect_to = "/login" +not_auth = "/login" +is_restricted = true + +[[serv_paths]] +src_path = "srcdocserver" +url_path = "/srcdocserver" +not_found = "" +roles = "dev,cl" +redirect_to = "/login" +not_auth = "/login" +is_restricted = true +``` + diff --git a/docs/settings.md b/docs/settings.md index 4608ce9..7a8ea6d 100644 --- a/docs/settings.md +++ b/docs/settings.md @@ -1,7 +1,5 @@ # Config settings -This is an example of [configuration file]({{urlbase}}/connfiguration.md) - Most of settings have default values to "/" for paths or "" for text or false for boolean, if are not set properly {{#include ../globaldefs.md:3}} config loadd will dispplay ain error an will not abort running. Attributes order does not matter, in case of file path attributes relative path (the ones ending with path") is tried and finally **root_path** valued as root path for values. Pay attention to **cert** and **key** paths @@ -17,17 +15,17 @@ Base layout for example below as **config**: ## site.toml -[Site settings]({{urlbase}}/site_settings.md) +[Site settings](docs/site_settings.md) ## menu_items.toml -[Menu Items settings]({{urlbase}}/menu_items_settings.md) +[Menu Items settings](docs/menu_items_settings.md) ## serv_paths.toml -[Serv Paths settings]({{urlbase}}/serv_paths_settings.md) +[Serv Paths settings](docs/serv_paths_settings.md) ## locales.toml -[Locales settings]({{urlbase}}/locales_settings.md) +[Locales settings](docs/locales_settings.md) diff --git a/docs/site_settings.md b/docs/site_settings.md new file mode 100644 index 0000000..c2aec8c --- /dev/null +++ b/docs/site_settings.md @@ -0,0 +1,167 @@ +# Site config settings + +Most of settings have default values to "/" for paths or "" for text or false for boolean, if are not set properly {{#include ../globaldefs.md:3}} config loadd will dispplay ain error an will not abort running. + +Attributes order does not matter, in case of file path attributes relative path (the ones ending with path") is tried and finally **root_path** valued as root path for values. Pay attention to **cert** and **key** paths + +## site.toml + +```toml +## Root path for filea and relative path settings +root_path = "sitehome" +# Sever name +name = "docserver" +org = "org" +# Show verbose info from 0 to 2 +verbose = 0 +# Main root path for all rest +home_path = "" +prefix = "" +resources_path = "resources" + +## Certs for SSL only for protocol = "https" +cert_file = "sitehome/certs/fullchain.pem" +key_file = "sitehome/certs/privkey.pem" + +## Templates path +templates_path = "templates" +defaults_path = "resources/defaults" + +## Main URLs +html_url = "/html" +assets_url = "/assets" + +## Origin allowed for CORS requests +allow_origin = ["http://localhost:3000"] + +## HOST ip or name for Web service +hostport = "localhost:3000" + +## IP address to bind web service +bind = "0.0.0.0" + +## PORT for Web service +port = 8800 +## PROTOCOL for Web service: "http" or "https" (will do bind_rustls with cert_file and key_file) +protocol = "http" + +## Availables Langs +langs = ["en","es"] +dflt_lang = "en" +## Setting path for locales +path_locales_config = "config/locales.toml" + +## How to signup by "invitation" or "open" +signup_mode = "open" +## Exporation time for invitations in seconds +invite_expire = 900 # in seconds + +## Use of TOTP Mode: "mandatory", "optional", "no" (default) +totp_mode = "optional" +## Number of TOTP digits: 6 (default) or 8 +totp_digits = 6 +## TOTP Algorithm: "sha1" (default), "sha256", "sha512"" +totp_algorithm = "sha256" + +## Password score value from 0 to 3 +password_score = 0 +## Defaul ADMIN fields +admin_fields = "roles,otp_base32,status" + +## Token use: true or false +use_token = false + +## Main use for notifications: true or false +use_mail = false +## SMTP host +smtp = "mailserver.example" +## SMTP auth can be text as: "user@domain|password" but for safety is much better to generate via "tools/get_mail_token.sh" after setting "sitehome/srv" token keys +smtp_auth = "v4.public...." +## Mails from address +mail_from ="docserver@mydomain.com" + +## Users Storage URI + +#users_store_uri = "file:///data/users" +users_store_uri = "sqlite:sitehome/data/users.db" + +## Log user store access +user_store_access = "access" + +## CASBIN authorizations and access control files settings +authz_model_path = "srvc/model.conf" +authz_policy_path = "srvc/policy.csv" + +## Defaul auth roles +auth_roles = ["dev"] + +## Store trace values: +trace_store_uri = "file:///logs/trace" +trace_level = 1 + +## Sessions store URI +#session_store_uri = "file:///data/sessions" +session_store_uri = "sqlite:sitehome/data/sessions.db" + +## Sessions store file +session_store_file = "session" +## Expiration session time in seconds if sessions is not used +session_expire = 300 + +## Menu Items settings path +path_menu_items = "config/menu_items.toml" +## Serv path settings file, where path are defined: url, auth, is_restricted ... +path_serv_paths = "config/serv_paths.toml" + +## Templates path and settings +[tpls] + url = "http://localhost:8800/" + main = "home.html.j2" + info = "info.html.j2" + help = "help.html.j2" + notfound = "notfound.html.j2" + notauth = "notauth.html.j2" + login = "login.html.j2" + logout = "logout.html.j2" + signup = "signup.html.j2" + user_settings = "user_settings.html.j2" + invite_create = "invite_create.html.j2" + invite_output = "invite_output.html.j2" + invite_mail_html = "invite_mail.html.j2" + invite_mail_txt = "invite_mail.txt.j2" + reset_password_mail_html = "reset_password_mail.html.j2" + reset_password_mail_txt = "reset_password_mail.txt.j2" + logs = "logs.html.j2" + users = "users.html.j2" + trylater = "trylater.j2" + session = "session.j2" + js = "js" + css = "" + +## Paseto Tokens settings +[paseto] + public_path = "srvc/public.ky" + secret_path = "srvc/secret.ky" + is_bin = false + assert_val = "" + expire = true +[paseto.map_footer] +[paseto.data] + + +## UI settings: css and links paths +[ui] +main_name = "
Fast, Secure, Agile
Customizable to contexts and needs
" +subtitle = "Documentations" +css_link = "https://cdn.jsdelivr.net/npm/@unocss/reset/tailwind.min.css" +js_link = "https://cdn.jsdelivr.net/npm/@unocss/runtime" +main_js_link = "/assets/js/main.js" +utils_js_link = "/assets/js/utils.js" +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" + +``` +