anybody can help me with http server
and php player file. trying to use a php player file that is also on dropbox but rclone http server
wont run that.
below is my nginx proxy setting
location ~ ^/php/ {
root /www/wwwroot/videos/web/;
autoindex on;
}
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:8080;
}
i set rclone http server
path in PHP but its not executing,
hope someone guide me to right path