1
0
Fork 0
forked from exozyme/nginx

Add Drone CI proxy pass

This commit is contained in:
Anthony Wang 2021-10-30 15:38:44 -05:00
parent e6731d5be4
commit 221dbc035c
Signed by untrusted user: a
GPG key ID: BC96B00AEC5F2D76

12
drone.conf Normal file
View file

@ -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;
}
}