forked from amidaware/trmm-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
155 lines (148 loc) · 5.63 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
site_name: "Tactical RMM Documentation"
nav:
- Home: index.md
- Sponsor: sponsor.md
- Code Signing: code_signing.md
- Support: support.md
- Roadmap: roadmap.md
- Getting Started Guide: guide_gettingstarted.md
- RMM Server Installation:
- "Install Considerations": install_considerations.md
- "Traditional Install": install_server.md
- "Docker Install": install_docker.md
- RMM Server Updating:
- "Updating the RMM": update_server.md
- "Updating the RMM (Docker)": update_docker.md
- Agents:
- "Agent Installation": install_agent.md
- "Updating Agents": update_agents.md
- Functionality:
- "How it all Works": howitallworks.md
- "Global Settings": functions/global_settings.md
- "Alerting": functions/alerting.md
- "API Access": functions/api.md
- "Checks": functions/automated_checks.md
- "Automated Tasks": functions/automated_tasks.md
- "Automation Policies": functions/automation_policies.md
- "Custom Fields": functions/custom_fields.md
- "Django Admin": functions/django_admin.md
- "Email & SMS Alerts": functions/emailsms_alert.md
- "Global Keystore": functions/keystore.md
- "Maintenance Mode": functions/maintenance_mode.md
- "Permissions": functions/permissions.md
- "Remote Background": functions/remote_bg.md
- "Overriding / Customizing Default Settings": functions/settings_override.md
- "Scripting": functions/scripting.md
- "SNMP Checks": functions/snmp_checks.md
- "Single Sign-On (SSO)": ee/sso/sso.md
- "URL Actions": functions/url_actions.md
- "User Interface Preferences": functions/user_ui.md
- "Web Hooks": functions/webhooks.md
- "Web Terminal": functions/web_terminal.md
- "Reference: Script Variables": script_variables.md
- "Examples": functions/examples.md
- Reporting:
- "Overview": ee/reporting/reporting_overview.md
- "- FAQ": ee/reporting/functions/faq.md
- "- The Basics": ee/reporting/functions/reporting_basics.md
- "- Base Templates": ee/reporting/functions/reporting_basetemplates.md
- "- Variables": ee/reporting/functions/reporting_variables.md
- "- Data Queries": ee/reporting/functions/reporting_dataqueries.md
- "- Assets": ee/reporting/functions/reporting_assets.md
- "- Tips n' Tricks": ee/reporting/functions/tipsntricks.md
- Backup: backup.md
- Restore: restore.md
- Antivirus Exclusions: av.md
- Troubleshooting: troubleshooting.md
- FAQ: faq.md
- Management Commands: management_cmds.md
- MeshCentral Integration: mesh_integration.md
- 3rd Party Integrations:
- "Grafana": 3rdparty_grafana.md
- "AnyDesk": 3rdparty_anydesk.md
- "N-Able": 3rdparty_n-able-takecontrol.md
- "Bomgar": 3rdparty_bomgar.md
- "ConnectWise Control / ScreenConnect": 3rdparty_screenconnect.md
- "RustDesk": 3rdparty_rustdesk.md
- "Splashtop": 3rdparty_splashtop.md
- "Supremo": 3rdparty_supremo.md
- "TeamViewer": 3rdparty_teamviewer.md
- "BitDefender GravityZone": 3rdparty_bitdefender_gravityzone.md
- "BitDefender Total Security": 3rdparty_bitdefender_total_security.md
- "Zammad": 3rdparty_zammad.md
- "Dashy": 3rdparty_dashy.md
- Unsupported Extras:
- "Unsupported Guidelines": unsupported_guidelines.md
- "Unsupported Configs": unsupported_scripts.md
- "Securing nginx": securing_nginx.md
- "Unsupported Proxies": unsupported_proxies.md
- "Installing in Synology Docker": unsupported_synology_docker_install.md
- "Installing on other platforms": unsupported_platforms.md
- Tips n' Tricks: tipsntricks.md
- Contributing:
- "Contributing to Docs": contributing.md
- "Contributing to Community Scripts": contributing_community_scripts.md
- "Contributing to Reporting Templates": contributing_reporting_templates.md
- "Contributing using a browser": contributing_using_browser.md
- "Contributing using VS Code": contributing_using_vscode.md
- "Contributing using Docker": contributing_using_docker.md
- "Contributing using a Remote Server": contributing_using_a_remote_server.md
- Security: security.md
- License: license.md
site_description: "A remote monitoring and management tool"
site_author: "amidaware"
site_url: "https://docs.tacticalrmm.com/"
dev_addr: "0.0.0.0:8005"
# Repository
repo_name: "amidaware/tacticalrmm"
repo_url: "https://github.com/amidaware/tacticalrmm"
edit_uri: ""
theme:
name: "material"
logo: "images/onit.ico"
favicon: "images/favicon.ico"
features:
- content.code.copy
language: "en"
palette:
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: light)"
scheme: light
toggle:
icon: material/brightness-7
name: Switch to dark mode
extra_css:
- stylesheets/extra.css
- stylesheets/neoteroi-mkdocs.css
extra_javascript:
- js/copy-to-clipboard.js
extra:
social:
- icon: fontawesome/brands/github
link: "https://github.com/amidaware/tacticalrmm"
markdown_extensions:
- pymdownx.tasklist:
clickable_checkbox: true
- pymdownx.critic:
mode: view
- pymdownx.keys
- pymdownx.inlinehilite
- admonition
- pymdownx.details
- codehilite:
guess_lang: false
- toc:
permalink: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- attr_list
- neoteroi.projects