Docs updates

This commit is contained in:
silversword411 2021-07-21 15:02:56 -04:00
parent 524283b9ff
commit ddbb58755e
No known key found for this signature in database
GPG Key ID: 6F4BD176F56B50CA
2 changed files with 26 additions and 2 deletions

View File

@ -138,7 +138,7 @@ Executes the file (INNO setup exe)
Files create `c:\Windows\temp\Tacticalxxxx\` folder for install (and log files)
*****
***
### Windows Update Management
@ -150,4 +150,14 @@ AUOptions (REG_DWORD):
1: Keep my computer up to date is disabled in Automatic Updates.
```
Uses this Microsoft API to handle updates: [https://docs.microsoft.com/en-us/windows/win32/api/_wua/](https://docs.microsoft.com/en-us/windows/win32/api/_wua/)
Uses this Microsoft API to handle updates: [https://docs.microsoft.com/en-us/windows/win32/api/_wua/](https://docs.microsoft.com/en-us/windows/win32/api/_wua/)
### Log files
You can find 3 sets of detailed logs at `/rmm/api/tacticalrmm/tacticalrmm/private/log`
* `error.log` nginx log for all errors on all TRMM URL's: rmm, api and mesh
* `access.log` nginx log for access auditing on all URL's: rmm, api and mesh (_this is a large file, and should be cleaned periodically_)
* `debug.log` created by django webapp

View File

@ -89,6 +89,20 @@ Read through the log files in the following folders and check for errors:
/var/log/celery
```
#### Using Cloudflare DNS
- rmm.example.com can be proxied.
- api.example.com can NOT be proxied.
- mesh.example.com can be proxied with the caveat that Mesh checks the cert presented to the agent is the same one on the server. I.e. no MITM. You'll need to copy Cloudflare's edge cert to your server if you want to proxy this domain.
#### Testing Network Connectivity between agent and server
Use powershell, make sure you can connect to 443 and 4222 from agent to server:
```powershell
Test-NetConnection -ComputerName api.example.com -Port 4222
```
Are you trying to use a proxy to share your single home public IP with multiple services on 443? This is complicated, test your setup.