This repository has been archived on 2020-08-13. You can view files and clone it, but cannot push or open issues/pull-requests.
aria2/nginx.conf

27 lines
489 B
Nginx Configuration File
Raw Permalink Normal View History

2019-04-19 19:17:09 +02:00
server {
listen 80;
server_name localhost;
2019-04-19 19:17:09 +02:00
root /srv/www/webui/;
location / {
index index.html;
}
location /download/ {
alias /data/;
autoindex on;
}
location /jsonrpc {
proxy_pass http://localhost:6800/jsonrpc;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}
2019-04-23 23:11:46 +02:00
location /metrics {
proxy_pass http://localhost:9578/metrics;
}
2019-04-19 19:17:09 +02:00
}