Beiträge von lopesmulder

    Thanks, but i dont get it...For example on Radar general options, i put /radar on url field, and on Nginx plugin, i create a new connection but...do i choose name based? I want to access Radarr using a custom DNS from duckdns to the raspberry ip, so i can acess outside of my home network to the radarr app like so... "http://myddns.duckdns.org:7878". Sorry if im not following, but i´m noobish on this. On raspbian i just Install nginx, create the Radarr nginx reverse proxy virtual host on /etc/nginx/sites-available/reverse for example, and make the following script


    server {
    listen 80;
    server_name mycostumdns raspberryip;



    location /radarr {
    proxy_pass http://127.0.0.1:7878;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }
    }


    Having the OMV 3.0 plugin, im trying to make somthing like this with the gui options from the plugin.


    Thanks for the reply :)