Skip to content

Instantly share code, notes, and snippets.

@e-lie
e-lie / ampache.conf
Created August 16, 2017 20:42
Yunohost nginx ampache config for DSUB to work
location /ampache/ {
alias /var/www/ampache/;
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
rewrite ^/ampache/rest/(.*).view$ /ampache/rest/index.php?action=$1 last;
rewrite ^/ampache/rest/fake/(.+)$ /ampache/play/$1 last;