• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

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