forked from exozyme/nginx
1
0
Fork 0

Replace Drone with Woodpecker CI

This commit is contained in:
Anthony Wang 2022-01-18 15:40:01 -06:00
parent 90a9282211
commit 7ec4b5ab37
Signed by untrusted user: a
GPG Key ID: BC96B00AEC5F2D76
2 changed files with 20 additions and 11 deletions

View File

@ -1,11 +0,0 @@
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name ci.exozy.me;
include conf.d/ssl;
location / {
proxy_pass http://localhost:2080;
}
}

20
woodpecker.conf Normal file
View File

@ -0,0 +1,20 @@
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name ci.exozy.me;
include conf.d/ssl;
location / {
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_pass http://localhost:2080;
proxy_redirect off;
proxy_http_version 1.1;
proxy_buffering off;
chunked_transfer_encoding off;
}
}