Files
Docker-Chevereto/docs/HTTPS.md
2022-11-05 16:03:29 -03:00

34 lines
743 B
Markdown

# HTTPS
🎉 HTTPS is automatic provided by `nginxproxy/acme-companion`.
## Toggle HTTPS use
Pass option `PROTOCOL=https` to use HTTPS:
```sh
make up-d PROTOCOL=https HOSTNAME=<hostname>
```
## Manual HTTPS
The certificate and private key will be taken from:
| Type | File |
| ----------- | ---------------- |
| Certificate | `https/cert.pem` |
| Private key | `https/key.pem` |
### Create certificate
To create HTTPS certificate:
* Spawn HTTP website (needed for Certbot validation)
* Run Certbot:
```sh
make certbot HOSTNAME=<hostname>
```
The above command uses `certbot/certbot` for providing the files required, it will place generated files at `https/`. Once done, re-spawn website with `PROTOCOL=https`.