Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ $ curl http://localhost:5000

Configuration files are located at `env.local` and `uwsgi.ini`.

A production ready uWSGI daemon (uwsgi socket exposed on port 5000) can be started with:
A production ready uWSGI daemon (uwsgi socket exposed on port 5001) can be started with:

```bash
docker-compose -f docker-compose.prod.yml up -d --build
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ services:
context: .
dockerfile: Dockerfile-prod
ports:
- "5000:5000"
- "5001:5001"
restart: on-failure
2 changes: 1 addition & 1 deletion uwsgi.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[uwsgi]
module = main:app
socket = 0.0.0.0:5000
socket = 0.0.0.0:5001
master = true
processes = 4