Ci-dessous, les différences entre deux révisions de la page.
| Les deux révisions précédentes Révision précédente Prochaine révision | Révision précédente | ||
|
informatique:serveur:subsonic [2015/08/07 09:54] igor |
informatique:serveur:subsonic [2019/02/10 08:12] (Version actuelle) igor Mention de Airsonic |
||
|---|---|---|---|
| Ligne 1: | Ligne 1: | ||
| - | ====== Subsonic ====== | + | ====== Subsonic |
| - | FIXME ! ... et bien voilà, je voulais documenter la sécurisation https de subsonic, je ne l'ai pas fait, et j'ai mis à jour... #crap | + | J' |
| - | http://forum.subsonic.org/forum/ | + | **Il existe un fork dont la licence continue à être libre : [[https://airsonic.github.io/|airsonic]]** |
| - | > I found this topic while trying to implement my SSL certificate (purchased from comodo), and after some more research I found this solution (for Ubuntu 14.04, but should work for most other Linux releases). | + | Pour autant, je cherche un remplaçant qui serait : |
| - | > | + | |
| - | >To generate a .keystore certificate you need your .key .crt and ca.crt files (ca.crt is Intermediate CA Certificate, | + | |
| - | >You could also generate your own self-signed certificate ('' | + | |
| - | > | + | |
| - | >Convert x509 Cert and Key to a pkcs12 (remember to set some_password), | + | |
| - | openssl pkcs12 -export -in server.crt -inkey server.key -out server.p12 -name [some-alias] -CAfile ca.crt -caname root | + | |
| - | >Convert the pkcs12 file to a java keystore | + | * libre (je veux dire vraiment) |
| - | | + | * sans Java |
| + | * avec un lecteur HTML par défaut | ||
| + | * si possible avec une conversion utilisant ffmpeg | ||
| + | * multi-user | ||
| + | * permettant de chercher, mais aussi de naviguer simplement dans une grande collection, par artiste et genre, principalement | ||
| + | * donc lirait les tags ID3 | ||
| + | * avec une interface responsive, mais aussi la fonction de mettre en cache à l' | ||
| - | >edit / | + | Il y a des choses, mais rien qui ne me satisfasse pour le moment. |
| - | Dsubsonic.ssl.keystore=/ | + | |
| - | Dsubsonic.ssl.password=[new_password] \'' | + | |
| - | >enable ssl connection in / | + | ===== Installation et mise à jour ===== |
| - | SUBSONIC_ARGS=" | + | |
| - | https://silentkernel.fr/quelques-tips-pour-subsonic/ | + | Installation sous debian : |
| + | |||
| + | - Télécharger le '' | ||
| + | - '' | ||
| + | |||
| + | Pour la mise à jour, chose que je ne fais donc plus : | ||
| + | |||
| + | - Télécharger le nouveau '' | ||
| + | - '' | ||
| + | - '' | ||
| + | |||
| + | Le fichier de configuration est dans ''/ | ||
| + | |||
| + | ===== Proxy pour Apache ===== | ||
| + | |||
| + | L' | ||
| + | |||
| + | < | ||
| + | |||
| + | ServerAdmin webmaster@id-libre.org | ||
| + | ServerName musique.id-libre.org | ||
| + | |||
| + | DocumentRoot / | ||
| + | |||
| + | SSLProxyEngine on | ||
| + | SSLCertificateFile / | ||
| + | SSLCertificateKeyFile / | ||
| + | |||
| + | |||
| + | SSLCACertificatePath / | ||
| + | |||
| + | ErrorLog ${APACHE_LOG_DIR}/ | ||
| + | LogLevel warn | ||
| + | CustomLog ${APACHE_LOG_DIR}/ | ||
| + | |||
| + | ProxyPass / http:// | ||
| + | ProxyPassReverse / http:// | ||
| + | <Proxy https:// | ||
| + | Require all granted | ||
| + | </ | ||
| + | |||
| + | </VirtualHost> | ||