Skip to content

Commit

Permalink
all: don't return gunicorn server name in response
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathaningram committed Oct 25, 2019
1 parent 5d3eb6e commit 35e6950
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion admin/Makefile
Expand Up @@ -79,7 +79,7 @@ run: version-file ## Run a development server (reloading)
$(RUNNER) flask run -p $(PORT)

run-gunicorn: version-file ## Run a production server
$(RUNNER) gunicorn -w $(WORKERS) -b 0.0.0.0:$(PORT) -k eventlet application
$(RUNNER) gunicorn --no-server-name -w $(WORKERS) -b 0.0.0.0:$(PORT) -k eventlet application

pipenv-requirements.txt: Pipfile.lock
$(PIPENV) lock -r > $@
Expand Down
2 changes: 1 addition & 1 deletion admin/Procfile
@@ -1 +1 @@
web: gunicorn -w 4 -b 0.0.0.0:8080 -k eventlet application
web: gunicorn --no-server-name -w 4 -b 0.0.0.0:8080 -k eventlet application
2 changes: 1 addition & 1 deletion api/Makefile
Expand Up @@ -108,7 +108,7 @@ run: version-file ## Run a development server (reloading)
$(RUNNER) flask run -p $(PORT)

run-gunicorn: version-file ## Run a production server
$(RUNNER) $(GUNICORN) -w $(WORKERS) -b 0.0.0.0:$(PORT) -k eventlet application
$(RUNNER) $(GUNICORN) --no-server-name -w $(WORKERS) -b 0.0.0.0:$(PORT) -k eventlet application

run-celery-worker: version-file ## Run background workers
NOTIFY_CELERY_CMD=worker \
Expand Down

0 comments on commit 35e6950

Please sign in to comment.