Skip to content

Commit

Permalink
README tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
akira committed Nov 18, 2015
1 parent 8090b87 commit 8a9d7ce
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -220,8 +220,6 @@ We could enqueue a job to this worker:
```

The 'perform' method will be called with matching args. For example:
```
```elixir
{:ok, jid} = Exq.enqueue(exq, "default", "MyWorker", [arg1, arg2])
```
@@ -234,6 +232,11 @@ defmodule MyWorker do
end
```

## Security

By default, you Redis server could be open to the world. As by default, Redis comes with no password authentication, and some hosting companies leave that port accessible to the world.. This means that anyone can read data on the queue as well as pass data in to be run. Obviously this is not desired, please secure your Redis installation by following guides such as the [Digital Ocean Redis Security Guide](https://www.digitalocean.com/community/tutorials/how-to-secure-your-redis-installation-on-ubuntu-14-04).


## Web UI:

Exq comes with a Web UI to monitor your workers:
@@ -259,10 +262,6 @@ redis-server --port 6555
mix test
```

## Security

By default, you Redis server could be open to the world. As by default, Redis comes with no password authentication, and some hosting companies leave that port accessible to the world.. This means that anyone can read data on the queue as well as pass data in to be run. Obviously this is not desired, please secure your Redis installation by following guides such as the [Digital Ocean Redis Security Guide](https://www.digitalocean.com/community/tutorials/how-to-secure-your-redis-installation-on-ubuntu-14-04).

## Contributors:

Justin McNally (j-mcnally) (structtv)

0 comments on commit 8a9d7ce

Please sign in to comment.