mitchray / ample

A simple web browser client for Ampache
https://ample-player.vercel.app/
GNU Affero General Public License v3.0
61 stars 13 forks source link

nginx rewrite rule #2

Closed darkphoenix closed 2 years ago

darkphoenix commented 2 years ago

I don't quite have the time to open a nice PR or wiki edit for this, but I'm running Ample on nginx and this works for me:

location /ample {
    if (!-e $request_filename) {
        rewrite ^(.*)$ /ample/index.php;
    }
}
mitchray commented 2 years ago

Hey thanks! I'll include that in the next release