mirror of
https://github.com/alexta69/metube.git
synced 2025-04-04 12:47:38 +03:00
fix broken PREFIX_URL feature
This commit is contained in:
parent
6d6ef97826
commit
91cee0339a
6 changed files with 34 additions and 12 deletions
14
README.md
14
README.md
|
@ -33,6 +33,20 @@ Certain values can be set via environment variables, using the `-e` parameter on
|
||||||
* __DOWNLOAD_DIR__: path to where the downloads will be saved. Defaults to "/downloads" in the docker image, and "." otherwise.
|
* __DOWNLOAD_DIR__: path to where the downloads will be saved. Defaults to "/downloads" in the docker image, and "." otherwise.
|
||||||
* __URL_PREFIX__: base path for the web server (for use when hosting behind a reverse proxy). Defaults to "/".
|
* __URL_PREFIX__: base path for the web server (for use when hosting behind a reverse proxy). Defaults to "/".
|
||||||
|
|
||||||
|
## Running behind a reverse proxy
|
||||||
|
|
||||||
|
Use the following nginx configuration to run MeTube behind a reverse proxy. The extra `proxy_set_headers` directives are there to make WebSockets work. Don't forget to set the URL_PREFIX environment variable to the correct value as well.
|
||||||
|
|
||||||
|
```
|
||||||
|
location /metube/ {
|
||||||
|
proxy_pass http://metube:8081;
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection "upgrade";
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
## Build and run locally
|
## Build and run locally
|
||||||
|
|
||||||
Make sure you have node.js installed.
|
Make sure you have node.js installed.
|
||||||
|
|
|
@ -22,6 +22,8 @@ class Config:
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
for k, v in self._DEFAULTS.items():
|
for k, v in self._DEFAULTS.items():
|
||||||
setattr(self, k, os.environ[k] if k in os.environ else v)
|
setattr(self, k, os.environ[k] if k in os.environ else v)
|
||||||
|
if not self.URL_PREFIX.endswith('/'):
|
||||||
|
self.URL_PREFIX += '/'
|
||||||
|
|
||||||
config = Config()
|
config = Config()
|
||||||
|
|
||||||
|
@ -35,10 +37,8 @@ class ObjectSerializer(json.JSONEncoder):
|
||||||
serializer = ObjectSerializer()
|
serializer = ObjectSerializer()
|
||||||
app = web.Application()
|
app = web.Application()
|
||||||
sio = socketio.AsyncServer()
|
sio = socketio.AsyncServer()
|
||||||
sio.attach(app)
|
sio.attach(app, socketio_path=config.URL_PREFIX + 'socket.io')
|
||||||
routes = web.RouteTableDef()
|
routes = web.RouteTableDef()
|
||||||
if not config.URL_PREFIX.endswith('/'):
|
|
||||||
config.URL_PREFIX += '/'
|
|
||||||
|
|
||||||
class Notifier(DownloadQueueNotifier):
|
class Notifier(DownloadQueueNotifier):
|
||||||
async def added(self, dl):
|
async def added(self, dl):
|
||||||
|
|
|
@ -27,8 +27,10 @@
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<p *ngIf="downloads.loading">Loading...</p>
|
<div *ngIf="downloads.loading" class="alert alert-info" role="alert">
|
||||||
<div class="metube-section-header">Downloading</div>
|
Connecting to server...
|
||||||
|
</div>
|
||||||
|
<div class="metube-section-header">Downloading</div>
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -3,14 +3,12 @@ import { NgModule } from '@angular/core';
|
||||||
import { FormsModule } from '@angular/forms';
|
import { FormsModule } from '@angular/forms';
|
||||||
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
|
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
|
||||||
import { HttpClientModule } from '@angular/common/http';
|
import { HttpClientModule } from '@angular/common/http';
|
||||||
import { SocketIoModule, SocketIoConfig } from 'ngx-socket-io';
|
|
||||||
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
|
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
|
||||||
|
|
||||||
import { AppComponent } from './app.component';
|
import { AppComponent } from './app.component';
|
||||||
import { EtaPipe, SpeedPipe } from './downloads.pipe';
|
import { EtaPipe, SpeedPipe } from './downloads.pipe';
|
||||||
import { MasterCheckboxComponent, SlaveCheckboxComponent } from './master-checkbox.component';
|
import { MasterCheckboxComponent, SlaveCheckboxComponent } from './master-checkbox.component';
|
||||||
|
import { MeTubeSocket } from './metube-socket';
|
||||||
const config: SocketIoConfig = { url: '', options: {} };
|
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
declarations: [
|
declarations: [
|
||||||
|
@ -25,10 +23,9 @@ const config: SocketIoConfig = { url: '', options: {} };
|
||||||
FormsModule,
|
FormsModule,
|
||||||
NgbModule,
|
NgbModule,
|
||||||
HttpClientModule,
|
HttpClientModule,
|
||||||
SocketIoModule.forRoot(config),
|
|
||||||
FontAwesomeModule
|
FontAwesomeModule
|
||||||
],
|
],
|
||||||
providers: [],
|
providers: [MeTubeSocket],
|
||||||
bootstrap: [AppComponent]
|
bootstrap: [AppComponent]
|
||||||
})
|
})
|
||||||
export class AppModule { }
|
export class AppModule { }
|
||||||
|
|
|
@ -2,7 +2,7 @@ import { Injectable } from '@angular/core';
|
||||||
import { HttpClient, HttpErrorResponse } from '@angular/common/http';
|
import { HttpClient, HttpErrorResponse } from '@angular/common/http';
|
||||||
import { of, Subject } from 'rxjs';
|
import { of, Subject } from 'rxjs';
|
||||||
import { catchError } from 'rxjs/operators';
|
import { catchError } from 'rxjs/operators';
|
||||||
import { Socket } from 'ngx-socket-io';
|
import { MeTubeSocket } from './metube-socket';
|
||||||
|
|
||||||
export interface Status {
|
export interface Status {
|
||||||
status: string;
|
status: string;
|
||||||
|
@ -31,7 +31,7 @@ export class DownloadsService {
|
||||||
queueChanged = new Subject();
|
queueChanged = new Subject();
|
||||||
doneChanged = new Subject();
|
doneChanged = new Subject();
|
||||||
|
|
||||||
constructor(private http: HttpClient, private socket: Socket) {
|
constructor(private http: HttpClient, private socket: MeTubeSocket) {
|
||||||
socket.fromEvent('all').subscribe((strdata: string) => {
|
socket.fromEvent('all').subscribe((strdata: string) => {
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
let data: [[[string, Download]], [[string, Download]]] = JSON.parse(strdata);
|
let data: [[[string, Download]], [[string, Download]]] = JSON.parse(strdata);
|
||||||
|
|
9
ui/src/app/metube-socket.ts
Normal file
9
ui/src/app/metube-socket.ts
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { Socket } from 'ngx-socket-io';
|
||||||
|
|
||||||
|
@Injectable()
|
||||||
|
export class MeTubeSocket extends Socket {
|
||||||
|
constructor() {
|
||||||
|
super({ url: '', options: {path: document.location.pathname + 'socket.io'} });
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue