• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

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