Open Eugeniy2024 opened 10 months ago
In my case:
Copy app/app.js to the web/ directory.
If you're using Nginx (HTTPS) as the web server:
Change port 8095 to 443 in both app.js and main.js (just search and replace)
Configure Nginx with the following settings:
location /socket.io/ {
proxy_pass http://127.0.0.1:8095;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
location / {
proxy_pass http://127.0.0.1:8095;
}
Works like a charm!
I gather everything, execute all commands, everything works. When starting the server, it starts working and looks for torrents. But when opening the root (/), there is a white screen. In the console, an error occurs when getting /app.js. There are no errors in the build process. What to do...? In previous versions as well ...
I will be glad of your help!