• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

Question How to manage a website from Plesk when installed over terminal?

proton23

Basic Pleskian
Server operating system version
Debian 12 (bookworm)
Plesk version and microupdate number
18.0.61
Hi,
I haven't searched because I don't know what to look for.
I installed navidrome on my server, it is running and accessible under http://mydomain.de:4533.
Now I would like to make it available under https://navidrome.mydomain.de:4533
Port is not that important but it should be httpS and under the subdomain.
I read something about reverse proxy but that did not workout so well.

Can anybody give me an advice?

Best regards
 
Hello, I guess the following steps can help:
  1. Add a subdomain navidrome.mydomain.de
  2. Uncheck Proxy mode option at Domain > navidrome.mydomain.de > Apache and Nginx Settings.
  3. Configure Nginx
    Code:
    location / {
    proxy_set_header X-Forwarded-For $remote_addr;
    proxy_set_header Host $http_host;
    proxy_pass http://127.0.0.1:4533;
    }
 
Thank you very much for your reply!
Because of that I tried this settings again (and they did not work again), but than I tried another browser and I found out that Firefox was the problem not the settings!
Clearing cookies and cache did the trick than.
Thanks again!
Best regards
 
Back
Top