docs/hack/infrastructure/docker-ci/nginx/nginx.conf

13 lines
194 B
Nginx Configuration File

server {
listen 80;
root /data/docker-ci;
location / {
proxy_pass http://localhost:8000/;
}
location /coverage {
root /data/docker-ci;
}
}