• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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