1
0
Fork 0
forked from exozyme/nginx
nginx/woodpecker.conf
Neovoid Pineapple 987615d414 Synced repo to upstream (#1)
Co-authored-by: Anthony Wang <a@noreply.git.exozy.me>
Co-authored-by: Anthony Wang <a@exozy.me>
Co-authored-by: x <icxven@cocaine.ninja>
Co-authored-by: iacore <noreply+gpg-stub@1a-insec.net>
Reviewed-on: #1
2024-02-29 15:20:10 +00:00

19 lines
430 B
Text

server {
listen 443 ssl;
listen [::]:443 ssl;
server_name ci.exozy.me;
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;
}
}