Author SHA1 Message Date
stevensting 1d8da3f2b0 Merge branch 'master' into upload-size 2026-05-12 14:48:18 +00:00
stevensting b97d893ef0 make nginx upload size configurable 2026-05-12 16:46:56 +02:00
3 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ services:
depends_on:
- db
db:
image: "mariadb:12.3"
image: "mariadb:12.1"
volumes:
- "mariadb:/var/lib/mysql"
networks:
+1
View File
@@ -67,6 +67,7 @@ services:
- STACK_NAME
- ROOT_PATH=/var/www/html/public
- DOMAIN
- MAX_BODY_SIZE=${MAX_BODY_SIZE:-256M}
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost"]
interval: 30s
+2
View File
@@ -4,6 +4,8 @@ server {
listen [::]:80;
server_name localhost;
client_max_body_size {{ env "MAX_BODY_SIZE" }};
root {{ env "ROOT_PATH" }};
#charset koi8-r;