1
0
mirror of https://github.com/mainflux/mainflux.git synced 2025-04-28 13:48:49 +08:00

Update HTTP adapter's configuration docs

Signed-off-by: Dejan Mijic <dejan@mainflux.com>
This commit is contained in:
Dejan Mijic 2017-12-11 14:18:42 +01:00
parent 238394e0a7
commit 00117519c4
No known key found for this signature in database
GPG Key ID: 35CD2D6AB811FEFC

View File

@ -9,9 +9,9 @@ The service is configured using the environment variables presented in the
following table. Note that any unset variables will be replaced with their
default values.
| Variable | Description | Default |
|------------------|-------------------|-----------------------|
| ADAPTER_NATS_URL | NATS instance URL | nats://localhost:4222 |
| Variable | Description | Default |
|-----------------------|-------------------|-----------------------|
| HTTP_ADAPTER_NATS_URL | NATS instance URL | nats://localhost:4222 |
## Deployment
@ -27,7 +27,7 @@ services:
ports:
- [host machine port]:8180
environment:
ADAPTER_NATS_URL: [NATS instance URL]
HTTP_ADAPTER_NATS_URL: [NATS instance URL]
```
To start the service outside of the container, execute the following shell script:
@ -42,7 +42,7 @@ cd $GOPATH/src/github.com/mainflux/mainflux/cmd/http
CGO_ENABLED=0 GOOS=[platform identifier] go build -ldflags "-s" -a -installsuffix cgo -o app
# set the environment variables and run the service
ADAPTER_NATS_URL=[NATS instance URL] app
HTTP_ADAPTER_NATS_URL=[NATS instance URL] app
```
## Usage