This repository has been archived on 2026-03-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nginx-s3-upload/start.sh
T

11 lines
202 B
Bash
Raw Normal View History

2019-06-20 13:07:42 +02:00
#!/bin/bash
set +u
set -euo pipefail
: ${S3_BUCKET_NAME:?"S3_BUCKET_NAME must be set"}
: ${AWS_REGION:?"AWS_REGION must be set"}
: ${RETURN_URL:?"RETURN_URL must be set"}
2019-06-20 13:07:42 +02:00
exec nginx -g 'daemon off;'