nginx/drone.conf

12 lines
188 B
Text
Raw Normal View History

2021-10-30 20:38:44 +00:00
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name ci.exozy.me;
include conf.d/ssl;
2021-10-30 20:38:44 +00:00
location / {
proxy_pass http://localhost:2080;
2021-10-30 20:38:44 +00:00
}
}