add question to issues

Simon Smith committed Aug 17, 2022 at 10:04 UTC a775a754e24d8b6eb23c028f3609dd816e37ed3b
1 file changed +68
.github/ISSUE_TEMPLATE/question.md new
+68
@@ -0,0 +1,68 @@
1 +---
2 +name: Question
3 +about: Create a question for community help
4 +title: ''
5 +labels: question
6 +assignees: ''
7 +
8 +---
9 +
10 +**Describe your issue**
11 +A clear and concise description of what your issue is.
12 +
13 +**Screenshots**
14 +If applicable, add screenshots to help explain your problem.
15 +
16 +**Server Software (please complete the following information):**
17 + - OS: [e.g. Ubuntu]
18 + - Virtualization: [e.g. Docker]
19 + - Network: [e.g. LAN/WAN, reverse proxy, cloudflare, ssl offload, etc...]
20 + - Version: [e.g. 1.0.43]
21 + - Node: [e.g. 18.4.0]
22 +
23 +**Client Device (please complete the following information):**
24 + - Device: [e.g. Laptop]
25 + - OS: [e.g. Ubuntu]
26 + - Network: [e.g. Local to Meshcentral, Remote over WAN]
27 + - Browser: [e.g. Google Chrome]
28 + - MeshCentralRouter Version: [if applicable]
29 +
30 +**Remote Device (please complete the following information):**
31 + - Device: [e.g. Laptop]
32 + - OS: [e.g. Windows 10 21H2]
33 + - Network: [e.g. Local to Meshcentral, Remote over WAN]
34 + - Current Core Version (if known): [**HINT**: Go to a device then `console` Tab then type `info`]
35 +
36 +**Your config.json file**
37 +```
38 +{
39 + "$schema": "http://info.meshcentral.com/downloads/meshcentral-config-schema.json",
40 + "__comment1__": "This is a simple configuration file, all values and sections that start with underscore (_) are ignored. Edit a section and remove the _ in front of the name. Refer to the user's guide for details.",
41 + "__comment2__": "See node_modules/meshcentral/sample-config-advanced.json for a more advanced example.",
42 + "settings": {
43 + "_cert": "myserver.mydomain.com",
44 + "_WANonly": true,
45 + "_LANonly": true,
46 + "_sessionKey": "MyReallySecretPassword1",
47 + "_port": 443,
48 + "_aliasPort": 443,
49 + "_redirPort": 80,
50 + "_redirAliasPort": 80
51 + },
52 + "domains": {
53 + "": {
54 + "_title": "MyServer",
55 + "_title2": "Servername",
56 + "_minify": true,
57 + "_newAccounts": true,
58 + "_userNameIsEmail": true
59 + }
60 + },
61 + "_letsencrypt": {
62 + "__comment__": "Requires NodeJS 8.x or better, Go to https://letsdebug.net/ first before trying Let's Encrypt.",
63 + "email": "myemail@mydomain.com",
64 + "names": "myserver.mydomain.com",
65 + "production": false
66 + }
67 +}
68 +```