- Modifié
Merci ! Je viens de tester, je vais le mettre dans le tuto demain 
EDIT : Tuto mise à jour

EDIT : Tuto mise à jour
2014-11-24 13:02:50.469085|WARNING |Accounting | | Unable to find valid license key, falling back to limited functionality
2014-11-24 13:02:50.470672|ERROR |Accounting | | failed to register local accounting service
2014-11-24 13:02:50.470796|ERROR |ServerLibPriv | | Server() error while starting servermanager, error: instance check error
Mais idem, je n'ai rien trouvé de concluant.rm teamspeak.rar
Et non pas
rm teamspeal.rar
Des fois que quelqu'un ne copie colle bêtement sans comprendre d'où vient l'erreur. [....] Restarting nginx: nginxnginx: [emerg] open() "/etc/nginx/conf.d/php.conf" failed (2: No such file or directory) in /etc/nginx/sites-enabled/rutorrent.conf:30
nginx: configuration file /etc/nginx/nginx.conf test failed
Voici ce que vous pourriez avoir besoin pour m'aider :server {
listen 80 default_server;
listen 443 default_server ssl;
server_name _;
index index.html index.php;
charset utf-8;
client_max_body_size 10M;
ssl_certificate /etc/nginx/ssl/server.crt;
ssl_certificate_key /etc/nginx/ssl/server.key;
access_log /var/log/nginx/rutorrent-access.log combined;
error_log /var/log/nginx/rutorrent-error.log error;
error_page 500 502 503 504 /50x.html;
location = /50x.html { root /usr/share/nginx/html; }
auth_basic "seedbox";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd";
location = /favicon.ico {
access_log off;
log_not_found off;
}
## Début config TeamSpeak ##
location ^~ /teamspeak {
root /var/www;
include /etc/nginx/conf.d/php.conf;
include /etc/nginx/conf.d/cache.conf;
satisfy any;
allow all;
}
## Fin config TeamSpeak ##
## début config accueil serveur ##
location ^~ / {
root /var/www/base;
include /etc/nginx/conf.d/php;
include /etc/nginx/conf.d/cache;
satisfy any;
allow all;
}
## fin config accueil serveur ##
## début config proxy ##
location ^~ /proxy {
root /var/www;
include /etc/nginx/conf.d/php;
include /etc/nginx/conf.d/cache;
}
## fin config proxy ##
## début config rutorrent ##
Ensuite j'ai le code de Rutorrent je ne suis pas sur qu'il sois utile (si besoin je l'ajouterais)<?php
/*
*Copyright (C) 2012-2013 Psychokiller
*
*This program is free software; you can redistribute it and/or modify it under the terms of
*the GNU General Public License as published by the Free Software Foundation; either
*version 3 of the License, or any later version.
*
*This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
*without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*See the GNU General Public License for more details.
*
*You should have received a copy of the GNU General Public License along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
if(!defined("SECURECHECK")) {die($lang['error_file_alone']);}
/*
REGARD!!
If you use the web interface, they must write the webserver ip in the query_ip_whitelist.txt.
After adding the ip, the server must be restarted!
Add more Server Ip's.
For Example
$server[0]['alias']= "Lokaler Server1";
$server[0]['ip']= "127.0.0.1";
$server[0]['tport']= "10011";
$server[1]['alias']= "Lokaler Server2";
$server[1]['ip']= "127.0.0.2";
$server[1]['tport']= "20022";
$server[2]['alias']= "Lokaler Server3";
$server[2]['ip']= "127.0.0.3";
$server[2]['tport']= "30033";
*/
$server[0]['alias']= "Ayutu Server";
$server[0]['ip']= "127.0.0.1";
$server[0]['tport']= 10011;
$cfglang = "fr"; //Language German = de, English = en, Netherlandish=nl (by pd1evl), French = fr (by supra63200)
$duration = "100"; //Set the Limit for Clients show per Page on Client List
$fastswitch=true; //If true you can switch the Server on the header
$showicons="left"; //Define the position where the icons on the Viewer will show left or right
$style="new"; //Chose your design set 'new' for the default design or the name of your own create design
$msgsend_name="Webinterface"; //This Name will be show if you send a message to a Server
$show_motd=true; // Set it to false to not show the message of the day window
$show_version=true; // Set it to false to not show the Webinterface Version on the footer
?>
Le souci est peut être tout bête désoler #!/bin/sh
### BEGIN INIT INFO
# Provides: teamspeak
# Required-Start: $local_fs $network
# Required-Stop: $local_fs $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Description: Teamspeak 3 Server
### END INIT INFO
USER="ts3"
DIR="/home/teamspeak/teamspeak3-server_linux-amd64"
###### Teamspeak 3 server start/stop script ######
case "$1" in
start)
su $USER -c "$DIR/ts3server_startscript.sh start"
;;
stop)
su $USER -c "$DIR/ts3server_startscript.sh stop"
;;
restart)
su $USER -c "$DIR/ts3server_startscript.sh restart"
;;
status)
su $USER -c "$DIR/ts3server_startscript.sh status"
;;
*)
echo "Usage: " >&2
exit 1
;;
esac
exit 0
foo.bar.host.com=123.34.45.132:5437
baz.host.com=44.23.55.109.245:11555
Et après :Heu là, je suis un peu perdu par contre.USAGE wrote: then start a (second) tsdnsserver, but this time with the parameter "--update" appended to the command line.
apt-get update && apt-get update -y
Upgrade*wget -O teamspeak.rar "http://addons.teamspeak.com/directory/addon/download/Teamspeak-3-Webinterface-by-Psychokiller.html"
C'est un .zip au niveau du téléchargement pas un .rar wget -O teamspeak.zip "http://addons.teamspeak.com/directory/addon/download/Teamspeak-3-Webinterface-by-Psychokiller.html"
server {
listen 80;
server_name ts.domain.tld;
return 301 https://ts.domain.tld$request_uri;
}
server {
listen 443;
server_name ts.domain.tld;
ssl on;
ssl_certificate /etc/nginx/ssl/server.crt;
ssl_certificate_key /etc/nginx/ssl/server.key;
location / {
proxy_pass http://127.0.0.1/teamspeak/;
satisfy any;
allow all;
}
}
Non fonctionnel. server {
listen 80;
server_name ts.domain.tld;
return 301 https://ts.domain.tld$request_uri;
}
server {
listen 443;
server_name ts.domain.tld;
ssl on;
ssl_certificate /etc/nginx/ssl/server.crt;
ssl_certificate_key /etc/nginx/ssl/server.key;
# /\ auth_basic /\
auth_basic "Teamspeak";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd";
root /var/www/teamspeak;
index index.php
access_log /var/log/nginx/ts3webint.access.log;
error_log /var/log/nginx/ts3webint.error.log;
location / { try_files $uri $uri/ =404; }
fastcgi_intercept_errors on;
location ~ \.php {
include /etc/nginx/conf.d/php;
try_files $uri /index.php;
fastcgi_index index.php;
}
location ~ /\. {
deny all;
}
}
Si tu pouvais mettre en place une sorte de journal de modification en haut du tutorial ça serait super pour voir les différentes évolutions wget http://dl.4players.de/ts/releases/3.0.11.4/teamspeak3-server_linux-amd64-3.0.11.4.tar.gz
Et j'ai un problème. Je suis bloqué ici lors de l'extraction de l'archive du web panel de TeamSpeak :
unrar x teamspeak.rar
Il m'indique que ce n'est pas une archive rar.
unrar x teamspeak.rar
UNRAR 5.21 freeware Copyright (c) 1993-2015 Alexander Roshal
teamspeak.rar is not RAR archive
No files to extract
Comment je peux l'extraire cet archive ?