diff --git a/README.md b/README.md index ef21fee..d2a209a 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml index 85c8e7b..26e9fb4 100644 --- a/docker-compose.prod.yml +++ b/docker-compose.prod.yml @@ -7,5 +7,5 @@ services: context: . dockerfile: Dockerfile-prod ports: - - "5000:5000" + - "5001:5001" restart: on-failure diff --git a/uwsgi.ini b/uwsgi.ini index eac1d78..fb8b09b 100644 --- a/uwsgi.ini +++ b/uwsgi.ini @@ -1,5 +1,5 @@ [uwsgi] module = main:app -socket = 0.0.0.0:5000 +socket = 0.0.0.0:5001 master = true processes = 4