diff --git a/drone.conf b/drone.conf new file mode 100644 index 0000000..3590d46 --- /dev/null +++ b/drone.conf @@ -0,0 +1,12 @@ +server { + listen 443 ssl http2; + listen [::]:443 ssl http2; + server_name ci.exozy.me; + + ssl_certificate /etc/letsencrypt/live/exozy.me/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/exozy.me/privkey.pem; + + location / { + proxy_pass http://localhost:22080; + } +}