diff --git a/README.md b/README.md index 9b6918a..0434e50 100644 --- a/README.md +++ b/README.md @@ -24,4 +24,26 @@ All subsequent domains I want to point to a home server service will have a CNAM ``` git.gerardgascon.com. IN CNAME vps.gerardgascon.com. -``` \ No newline at end of file +``` + +## Steps to add a new service + +1. Add CNAME record to DNS +2. Modify nginx.conf to add support for the new service: + ```nginx configuration + server { + listen 443 ssl; + server_name <>; + + ssl_certificate /etc/letsencrypt/live/<>/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/<>/privkey.pem; + + location / { + proxy_pass http://<>:<>/; + } + } + ``` +3. Request SSL certificate and deploy: + ```shell + docker compose stop nginx && certbot certonly --standalone -d <> --expand && docker compose up -d + ``` \ No newline at end of file