You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
decentral1se
7e4c77eb0d
|
4 days ago | |
---|---|---|
static/content | 5 days ago | |
templates | 5 days ago | |
.gitignore | 5 days ago | |
LICENSE | 6 days ago | |
README.md | 4 days ago | |
requirements.txt | 5 days ago | |
upload.py | 5 days ago |
README.md
image_upload
Requires Python >= 3.11.x 👍
- install dependencies:
pip install -r requirements.txt
- create static images folder:
mkdir -p ./static/images
- launch the application:
python upload.py
deploy
pip install gunicorn
gunicorn --bind 127.0.0.1:5000 upload:APP
nginx
Something like this. You need to replace <DOMAIN>
/ <YOUR-MESSAGE>
/
<ABS-PATH>
. It's advised to protect image_upload
beside some form of
authentication to avoid nasty surprises.
upstream gunicorn {
server 127.0.0.1:5000 fail_timeout=0;
}
server {
listen 80;
listen 443 ssl;
server_name <DOMAIN>;
location / {
proxy_pass http://gunicorn;
auth_basic "<YOUR-MESSAGE>";
auth_basic_user_file /etc/nginx/.htpasswd;
}
location /static/images/ {
autoindex on;
alias /var/www/<ABS-PATH>/static/images/;
}
}
systemd
[Unit]
Description=image_upload
After=syslog.target network.target
[Service]
User=<USER>
WorkingDirectory=<ABS-PATH>
ExecStart=<ABS-PATH>/.venv/bin/gunicorn --bind 127.0.0.1:5000 upload:APP
RemainAfterExit=no
Restart=always
RestartSec=5
[Install]
WantedBy=multi-user.target
Where you replace <USER>
with your preferred system user. <ABS-PATH>
should
be the system path when the repository is cloned. Note, a virtual environment
was created at <ABS-PATH>/.venv/...
with the dependencies installed.