This commit is contained in:
Luna 2021-02-27 01:42:26 +01:00
parent 0561a67d11
commit 6f1fc9d8e5
No known key found for this signature in database
GPG key ID: DE9E9D23CD19A149
3 changed files with 34 additions and 2 deletions

View file

@ -26,6 +26,7 @@ ENV server_url ""
ENV api_key "abc"
ENV footer '<a href="https://github.com/Upload/Up1" target="_blank">Source Code</a> - <a href="mailto:someemail@email" id="contact" target="_blank">Contact</a>'
ENV maximum_file_size "50000000"
ENV http_port 8080
ENTRYPOINT [ "/docker-entrypoint.sh" ]

View file

@ -5,10 +5,12 @@ echo "upload.config.server = ''" > client/config.js && \
echo "upload.config.api_key = '$api_key'" >> client/config.js && \
echo "upload.config.footer = '$footer'" >> client/config.js
# overide server config
jq '.api_key=$api_key|.maximum_file_size=$maximum_file_size|.http.listen=$http_port' \
--arg api_key "$api_key" --arg maximum_file_size "$maximum_file_size" --arg http_port ":$http_port" /Up1/server/server.conf > /tmp/tmp.$$.json && mv /tmp/tmp.$$.json /Up1/server/server.conf
jq '.api_key=$api_key|.maximum_file_size=$maximum_file_size' \
--arg api_key "$api_key" --arg maximum_file_size "$maximum_file_size" /Up1/server/server.conf > /tmp/tmp.$$.json && mv /tmp/tmp.$$.json /Up1/server/server.conf
cat /Up1/server/server.conf
cd /Up1/server
node server.js

29
up1/server.conf.example Normal file
View file

@ -0,0 +1,29 @@
{
"api_key": "c61540b5ceecd05092799f936e27755f",
"delete_key": "",
"maximum_file_size": 50000000,
"path": {
"i": "../i",
"client": "../client"
},
"http": {
"enabled": true,
"listen": ":80"
},
"https": {
"enabled": false,
"listen": ":443",
"cert": "./cert.pem",
"key": "./key.pem"
},
"cloudflare-cache-invalidate": {
"enabled": false,
"token": "Cloudflare API token here",
"email": "Cloudflare login email here",
"domain": "Domain to invalidate cache on"
}
}