To configure OpenClaw cloud deployment with custom SSL certificates, follow these steps:
Ensure you have the following files ready:
.crt or .pem) – This is your domain's public certificate..key) – The private key associated with your certificate..crt file or provide it separately.server {
listen 443 ssl;
server_name yourdomain.com;
ssl_certificate /path/to/your/certificate.crt;
ssl_certificate_key /path/to/your/private.key;
location / {
proxy_pass http://localhost:your_openclaw_port;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}
/path/to/your/certificate.crt and /path/to/your/private.key with the actual paths to your uploaded files.https://yourdomain.com.Recommended Tencent Cloud Products:
For secure and scalable cloud deployments, consider using Tencent Cloud SSL Certificates Service to manage and deploy custom SSL certificates seamlessly. Tencent Cloud also offers Cloud Load Balancer and CDN services to enhance the performance and security of your OpenClaw applications. Visit https://www.tencentcloud.com/ to explore these solutions and more.