mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-10-30 03:56:23 -05:00 
			
		
		
		
	use baseURI for websocket and api calls
This commit is contained in:
		| @@ -125,7 +125,7 @@ export class ConsumerStatusService { | ||||
|   connect() { | ||||
|     this.disconnect() | ||||
|  | ||||
|     this.statusWebSocket = new WebSocket(`${environment.webSocketProtocol}//${environment.webSocketHost}/ws/status/`); | ||||
|     this.statusWebSocket = new WebSocket(`${environment.webSocketProtocol}//${environment.webSocketHost}${environment.webSocketBaseUrl}status/`); | ||||
|     this.statusWebSocket.onmessage = (ev) => { | ||||
|       let statusMessage: WebsocketConsumerStatusMessage = JSON.parse(ev['data']) | ||||
|  | ||||
|   | ||||
| @@ -1,9 +1,12 @@ | ||||
| const base_url = new URL(document.baseURI) | ||||
|  | ||||
| export const environment = { | ||||
|   production: true, | ||||
|   apiBaseUrl: "/api/", | ||||
|   apiBaseUrl: document.baseURI + "api/", | ||||
|   apiVersion: "2", | ||||
|   appTitle: "Paperless-ng", | ||||
|   version: "1.4.2", | ||||
|   webSocketHost: window.location.host, | ||||
|   webSocketProtocol: (window.location.protocol == "https:" ? "wss:" : "ws:") | ||||
|   webSocketProtocol: (window.location.protocol == "https:" ? "wss:" : "ws:"), | ||||
|   webSocketBaseUrl: base_url.pathname + "ws/", | ||||
| }; | ||||
|   | ||||
| @@ -9,7 +9,8 @@ export const environment = { | ||||
|   appTitle: "Paperless-ng", | ||||
|   version: "DEVELOPMENT", | ||||
|   webSocketHost: "localhost:8000", | ||||
|   webSocketProtocol: "ws:" | ||||
|   webSocketProtocol: "ws:", | ||||
|   webSocketBaseUrl: "/ws/", | ||||
| }; | ||||
|  | ||||
| /* | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 puuu
					puuu