prepre integration to starter
This commit is contained in:
parent
800db14cda
commit
d82abaf7d5
@ -1,30 +0,0 @@
|
||||
if ( !-d $request_filename ) {
|
||||
rewrite ^/ampache/rest/(.*)\.view$ /ampache/rest/index.php?action=$1 last;
|
||||
rewrite ^/ampache/rest/play/(.+)$ /ampache/play/$1 last;
|
||||
}
|
||||
|
||||
rewrite ^/ampache/play/ssid/(\w+)/type/(\w+)/oid/([0-9]+)/uid/([0-9]+)/name/(.*)$ xi/ampache/play/index.php?ssid=$1&type=$2&oid=$3&uid=$4&name=$5 last;
|
||||
rewrite ^/ampache/play/ssid/(\w+)/type/(\w+)/oid/([0-9]+)/uid/([0-9]+)/client/(.*)/noscrobble/([0-1])/name/(.*)$ /ampache/play/index.php?ssid=$1&type=$2&oid=$3&uid=$4&client=$5&noscrobble=$6&name=$7 last;
|
||||
rewrite ^/ampache/play/ssid/(.*)/type/(.*)/oid/([0-9]+)/uid/([0-9]+)/client/(.*)/noscrobble/([0-1])/player/(.*)/name/(.*)$ /ampache/play/index.php?ssid=$1&type=$2&oid=$3&uid=$4&client=$5&noscrobble=$6&player=$7&name=$8 last;
|
||||
rewrite ^/ampache/play/ssid/(.*)/type/(.*)/oid/([0-9]+)/uid/([0-9]+)/client/(.*)/noscrobble/([0-1])/bitrate/([0-9]+)/player/(.*)/name/(.*)$ /ampache/play/index.php?ssid=$1&type=$2&oid=$3&uid=$4&client=$5&noscrobble=$6&bitrate=$7player=$8&name=$9 last;
|
||||
rewrite ^/ampache/play/ssid/(.*)/type/(.*)/oid/([0-9]+)/uid/([0-9]+)/client/(.*)/noscrobble/([0-1])/transcode_to/(w+)/bitrate/([0-9]+)/player/(.*)/name/(.*)$ /ampache/play/index.php?ssid=$1&type=$2&oid=$3&uid=$4&client=$5&noscrobble=$6&transcode_to=$7&bitrate=$8&player=$9&name=$10 last;
|
||||
|
||||
# The following line necessary for me to be able to download single songs
|
||||
rewrite ^/ampache/play/ssid/(.*)/type/(.*)/oid/([0-9]+)/uid/([0-9]+)/action/(.*)/name/(.*)$ /ampache/play/index.php?ssid=$1&type=$2&oid=$3&uid=$4action=$5&name=$6 last;
|
||||
|
||||
# used for transfering art work to some clients, seems not to work for clementine because of an clementine-internal issue
|
||||
location /ampache/play {
|
||||
if (!-e $request_filename) {
|
||||
rewrite ^/ampache/play/art/([^/]+)/([^/]+)/([0-9]+)/thumb([0-9]*)\.([a-z]+)$ /ampache/image.php?object_type=$2&object_id=$3&auth=$1;
|
||||
break;
|
||||
}
|
||||
rewrite ^/([^/]+)/([^/]+)(/.*)?$ /ampache/play/$3?$1=$2;
|
||||
rewrite ^/(/[^/]+|[^/]+/|/?)$ /ampache/play/index.php last;
|
||||
break;
|
||||
}
|
||||
|
||||
location /ampache/rest {
|
||||
limit_except GET POST {
|
||||
deny all;
|
||||
}
|
||||
}
|
@ -1,3 +1,6 @@
|
||||
---
|
||||
title: arch_install
|
||||
---
|
||||
The following is a brief installation tutorial for [Arch Linux][1]. It assumes
|
||||
familiarity with the Arch [Beginner's Guide][2] and [Installation Guide][3].
|
||||
|
||||
|
@ -1,4 +1,7 @@
|
||||
## booter depuis le shell grub
|
||||
---
|
||||
title: grub_shell
|
||||
---
|
||||
# booter depuis le shell grub
|
||||
|
||||
- les commande **cat** et **ls** fonctionne
|
||||
- trouver partition de boot
|
||||
@ -23,4 +26,4 @@ grub rescue> linux /boot/vmlinuz-3.13.0-29-generic root=/dev/sda1
|
||||
grub rescue> initrd /boot/initrd.img-3.13.0-29-generic
|
||||
grub rescue> boot`
|
||||
|
||||
[archwiki](https://wiki.archlinux.org/index.php/GRUB)
|
||||
[archwiki](https://wiki.archlinux.org/index.php/GRUB)
|
||||
|
6
nginx.md
6
nginx.md
@ -1,3 +1,7 @@
|
||||
---
|
||||
title: nginx
|
||||
---
|
||||
|
||||
# nginx
|
||||
## reverse proxy
|
||||
``` location /chainetv {
|
||||
@ -11,4 +15,4 @@
|
||||
```
|
||||
- le :/ aprés le socket sert a envoyer le sous répertoire a la suite de l'adresse demander l'appli écoute donc la route /api
|
||||
- la parie commenté a le même fonctionnement mais permet un réglage plus fin associer a flask et la classe ReverseProxied par exemple:
|
||||
la location peut rediriger /chaine/api en metant le X-Script-ame a /chainetv l'appli peut donc écouter la route /api
|
||||
la location peut rediriger /chaine/api en metant le X-Script-ame a /chainetv l'appli peut donc écouter la route /api
|
||||
|
5
virsh.md
5
virsh.md
@ -1,3 +1,6 @@
|
||||
---
|
||||
title: virsh
|
||||
---
|
||||
## virsh usefull command
|
||||
### standart
|
||||
|
||||
@ -15,4 +18,4 @@
|
||||
- info snapshot: ` virsh snapshot-info --domain nas --snapshotname "ansible ping OK" `
|
||||
- appliquer une snapshot: `virsh snapshot-revert --domain --snapshotname "ansible ping OK" --running`
|
||||
- delete snapshot: `virsh snapshot-delete --domain freebsd --snapshotname 5Sep2016_S2`
|
||||
-
|
||||
-
|
||||
|
Reference in New Issue
Block a user