Skip to content

Commit

Permalink
fix: Fix login concurrence problem
Browse files Browse the repository at this point in the history
  • Loading branch information
drorganvidez committed Jul 25, 2023
1 parent 45a51be commit 284be21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ COPY migrations/ ./migrations
EXPOSE 5000

# Run the database migrations and then start the application with Gunicorn
CMD flask db upgrade && gunicorn --bind 0.0.0.0:5000 app:app --log-level debug --timeout 3600 --workers 4 --threads 2
CMD flask db upgrade && gunicorn --bind 0.0.0.0:5000 app:app --log-level debug --timeout 3600
2 changes: 1 addition & 1 deletion nginx/nginx.dev.conf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ http {
server {
listen 80;


client_max_body_size 10000M;

location / {
proxy_pass http://web;
Expand Down

0 comments on commit 284be21

Please sign in to comment.