(simatec) Beta 0.1.0

This commit is contained in:
simatec 2022-03-08 14:13:08 +01:00
parent 7221f093f8
commit 1e83aae71d

View file

@ -53,6 +53,37 @@ after config start the Install
Congratulations your Piler is installed... Congratulations your Piler is installed...
The Piler can now be reached at http://your-domain:8080.
* SSL certificates
If you want to run your Piler with SSL certificates, which always makes sense if the Piler isn't running locally, then I recommend the Nginx proxy manager for Docker.
I built my setup with the Nginx.
The Ngnix can be installed with the following compose.
Create a docker-compose.yml file similar to this:
``
version: '3'
services:
app:
image: 'jc21/nginx-proxy-manager:latest'
restart: unless-stopped
ports:
- '80:80'
- '81:81'
- '443:443'
volumes:
- ./data:/data
- ./letsencrypt:/etc/letsencrypt
``
``
docker-compose up -d
``
********************************************************************************************************** **********************************************************************************************************
## Changelog ## Changelog