Merge branch 'dev' into debian

# Conflicts:
#	README.md
This commit is contained in:
Oscar Krause 2022-12-28 08:39:10 +01:00
commit 914fc17795
1 changed files with 18 additions and 1 deletions

View File

@ -12,7 +12,7 @@ Only the clients need a connection to this service on configured port.
- provide `.deb` package (WIP)
- migrate from `dataset` to `sqlalchemy` (WIP)
- migrate from `fastapi` to `flask`
- Support http mode for using external https proxy
- Support http mode for using external https proxy (disable uvicorn ssl for using behind proxy)
## Endpoints
@ -214,6 +214,23 @@ wget -O $FILENAME https://git.collinwebdesigns.de/oscar.krause/fastapi-dls/-/pac
dpkg -i $FILENAME
apt-get install -f --fix-missing
```
with `systemctl start fastapi-dls.service`.
## Let's Encrypt Certificate
If you're using installation via docker, you can use `traefik`. Please refer to their documentation.
Note that port 80 must be accessible, and you have to install `socat` if you're using `standalone` mode.
```shell
acme.sh --issue -d example.com \
--cert-file /etc/fastapi-dls/webserver.donotuse.crt \
--key-file /etc/fastapi-dls/webserver.key \
--fullchain-file /etc/fastapi-dls/webserver.crt \
--reloadcmd "systemctl restart fastapi-dls.service"
```
After first success you have to replace `--issue` with `--renew`.
# Configuration