Skip to content

Commit

Permalink
increase nginx request size
Browse files Browse the repository at this point in the history
  • Loading branch information
KBorm committed Oct 4, 2023
1 parent 9cc2ac7 commit 9e4560c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 4.18.4

* increase request size for nginx

# 4.18.3

* new: if student code consists of exactly one Java file, it will be retained for the Junit test
Expand Down
6 changes: 3 additions & 3 deletions nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ server {
listen 80;

# increase upload size to 5 MB (default: 1MB)
client_max_body_size 5M;
client_max_body_size 50M;

# server_name server.domain.org;

Expand Down Expand Up @@ -42,8 +42,8 @@ server {
# ssl_certificate /etc/nginx/certs/server.crt;
# ssl_certificate_key /etc/nginx/certs/server.key;

# increase upload size to 5 MB (default: 1MB)
# client_max_body_size 5M;
# increase upload size to 50 MB (default: 1MB)
# client_max_body_size 50M;

# forward to django
# location / {
Expand Down
2 changes: 1 addition & 1 deletion src/VERSION.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-

version = "Version 4.18.3 | 20230920"
version = "Version 4.18.4 | 20231004"

0 comments on commit 9e4560c

Please sign in to comment.