You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/configuration.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ The configuration file has four sections: _WebApi_, _MessageQueue_, _Mail_, and
13
13
The _WebApi_ section contains settings for the InEngine.NET's WebApi.
14
14
Namely, the hostname and port of the web API.
15
15
16
-
```
16
+
```js
17
17
{
18
18
// ...
19
19
"WebApi": {
@@ -32,14 +32,14 @@ If these settings are not correct, then a connection exception will be thrown wh
32
32
A queue called "myqueue" will not exist on a freshly installed RabbitMQ server.
33
33
It will need to be created.
34
34
35
-
```
35
+
```js
36
36
{
37
37
// ...
38
38
"MessageQueue": {
39
39
"QueueName":"myqueue",
40
40
"ExchangeName":"amq.direct",
41
-
"UserName": "guest",
42
-
"Password": "guest",
41
+
"UserName":"inengine",
42
+
"Password":"secret",
43
43
"HostName":"localhost",
44
44
"VirtualHost":"/"
45
45
},
@@ -52,7 +52,7 @@ It will need to be created.
52
52
The _Elasticsearch_ section contains settings for connecting to a Elasticsearch server.
53
53
If these settings are not correct, then a connection exception will be thrown when a job is scheduled.
54
54
55
-
```
55
+
```js
56
56
{
57
57
// ...
58
58
"Elasticsearch": {
@@ -70,7 +70,7 @@ If these settings are not correct, then a connection exception will be thrown wh
70
70
The _Mail_ section contains settings for connecting to an SMTP server.
71
71
If these settings are not correct, then a connection exception will be thrown when sending an email.
72
72
73
-
```
73
+
```js
74
74
{
75
75
// ...
76
76
"Mail": {
@@ -86,7 +86,7 @@ If these settings are not correct, then a connection exception will be thrown wh
86
86
The _Database_ section contains settings for connecting to a either a SQL Server or MySQL server via [Entity Framework](http://msdn.microsoft.com/en-us/data/ef.aspx).
87
87
If these settings are not correct, then a connection exception will be thrown when a SQL job runs.
88
88
89
-
```
89
+
```js
90
90
{
91
91
// ...
92
92
"Database": {
@@ -104,7 +104,7 @@ If these settings are not correct, then a connection exception will be thrown wh
104
104
## Sample Configuration
105
105
This is a sample configuration.
106
106
107
-
```
107
+
```js
108
108
{
109
109
"WebApi": {
110
110
"HostName":"localhost",
@@ -113,8 +113,8 @@ This is a sample configuration.
0 commit comments