mirror of
https://github.com/Dokploy/website.git
synced 2026-06-26 01:25:24 +02:00
- Introduced new MDX components and configuration files for the documentation site. - Added various images and icons to enhance the visual representation of the documentation. - Updated package.json and pnpm-lock.yaml to include new dependencies for the documentation. - Created a .gitignore file for the new docs app to manage ignored files effectively. - Enhanced README with instructions for restarting the dev server after adding new MDX files.
33 lines
1.5 KiB
Plaintext
33 lines
1.5 KiB
Plaintext
---
|
|
title: Certificates
|
|
description: 'Configure your certificates to secure your applications.'
|
|
---
|
|
|
|
import { Callout } from 'fumadocs-ui/components/callout';
|
|
|
|
Dokploy offers a UI to manage your certificates.
|
|
|
|
|
|
We expose a UI to create and delete the certificates, we ask two fields:
|
|
|
|
1. **Name**: Enter a name for the certificate (this can be anything you choose).
|
|
2. **Certificate Data**: Provide the certificate details.
|
|
3. **Private Key**: Enter the private key.
|
|
4. **(Optional) Server**: If you want to create a certificate for a server, you can select it here.
|
|
|
|
<Callout type='warn'>
|
|
This action will create the files, but that doesn't mean it will work automatically. You need to adjust the Traefik configuration to use it, this configuration will make
|
|
to traefik can recognize the certificate.
|
|
</Callout>
|
|
|
|
## Traefik.me HTTPS Setup
|
|
|
|
By default, all the domains from `traefik.me` are HTTP only, if you want to use HTTPS you need to create a certificate and use it in the domain settings.
|
|
|
|
You need to download the full https://traefik.me/fullchain.pem and https://traefik.me/privkey.pem, this are valid for 30 days.s
|
|
|
|
The fullchain.pem paste in the `Certificate Data` field and the privkey.pem paste in the `Private Key` field.
|
|
|
|
Now when using the traefik.me domains, make sure to enable `HTTPS` toggle and select the certificate provider set `None`
|
|
|
|
If you want to remove the certificate, just remove the certificate and in your domains settings remove the `HTTPS` toggle. |