1
0
Fork 0
mirror of https://github.com/VueTorrent/VueTorrent.git synced 2025-03-16 13:09:44 +03:00

Created Alternative_Installation_Methods (markdown)

Daan Wijns 2021-02-27 08:14:11 +01:00
parent 91dda332a2
commit 26d6ffc1e0

@ -0,0 +1,19 @@
### NGINX install
You can use NGINX reverse proxy to use VueTorrent, without making any change to qBittorrent.
Simply download and unzip the folder to a location (`/opt` here) and paste this code into your NGINX config file.
```nginx
server {
server_name vue.torrent;
location / {
root /opt/vuetorrent/public/;
}
location /api {
proxy_pass http://127.0.0.1:8081;
http2_push_preload on;
client_max_body_size 10M;
}
}
```