mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-03-16 13:09:44 +03:00
Created Alternative_Installation_Methods (markdown)
parent
91dda332a2
commit
26d6ffc1e0
1 changed files with 19 additions and 0 deletions
19
Alternative_Installation_Methods.md
Normal file
19
Alternative_Installation_Methods.md
Normal file
|
@ -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;
|
||||
}
|
||||
}
|
||||
```
|
Loading…
Add table
Reference in a new issue