Jan Reister commited on 2009-02-17 16:18:42
Zeige 1 geänderte Dateien mit 33 Einfügungen und 4 Löschungen.
| ... | ... |
@@ -1,5 +1,5 @@ |
| 1 | 1 |
## translation metadata |
| 2 |
-# Based-On-Revision: 15747 |
|
| 2 |
+# Based-On-Revision: 18524 |
|
| 3 | 3 |
# Last-Translator: jan at seul .org |
| 4 | 4 |
|
| 5 | 5 |
#include "head.wmi" TITLE="Tor: gestire un mirror" CHARSET="UTF-8" |
| ... | ... |
@@ -19,6 +19,36 @@ tutto ciò di cui un mirror ha bisogno: |
| 19 | 19 |
rsync -av --delete rsync://rsync.torproject.org/tor tor-mirror/ |
| 20 | 20 |
</tt> |
| 21 | 21 |
<br /><br /> |
| 22 |
+<p> |
|
| 23 |
+Ad esempio, un cronjob per aggiornare un intero mirror una volta al giorno è qualcosa come: |
|
| 24 |
+<tt> |
|
| 25 |
+<pre> |
|
| 26 |
+# m h dom mon dow command |
|
| 27 |
+1 4 * * * rsync -av --delete rsync://rsync.torproject.org/tor /var/www/mirrors/torproject.org/ |
|
| 28 |
+</pre> |
|
| 29 |
+</tt> |
|
| 30 |
+</p> |
|
| 31 |
+<br/> |
|
| 32 |
+Per i gestori di mirror che usano Apache, abbiamo creato un file di configurazione d'esempio per |
|
| 33 |
+un virtual host da usare: |
|
| 34 |
+<tt> |
|
| 35 |
+<pre> |
|
| 36 |
+<VirtualHost 1.2.3.4:80> |
|
| 37 |
+ ServerAdmin youremail@example.com |
|
| 38 |
+ ServerName 1.2.3.4 |
|
| 39 |
+ |
|
| 40 |
+ DocumentRoot /var/www/mirrors/torproject.org |
|
| 41 |
+ |
|
| 42 |
+ <Directory /var/www/mirrors/torproject.org/> |
|
| 43 |
+ Options MultiViews |
|
| 44 |
+ DirectoryIndex index |
|
| 45 |
+ AllowOverride None |
|
| 46 |
+ </Directory> |
|
| 47 |
+ |
|
| 48 |
+<VirtualHost> |
|
| 49 |
+</pre> |
|
| 50 |
+</tt> |
|
| 51 |
+<br /> <br /> |
|
| 22 | 52 |
Se hai intenzione di gestire un dist/ mirror, usa questo comando per scaricare |
| 23 | 53 |
tutto ciò che un dist/mirror ha bisogno di replicare: |
| 24 | 54 |
<br /> <br /> |
| ... | ... |
@@ -30,11 +60,10 @@ Per favore mantieni aggiornato il mirror (ti suggeriamo di automatizzare questo |
| 30 | 60 |
compito con '<tt>cron</tt>' e simili). Il nostro sito web, il codice sorgente e le |
| 31 | 61 |
release binarie cambiano spesso. Gi utilizzatori di Tor te ne saranno grati. |
| 32 | 62 |
</p> |
| 33 |
- |
|
| 63 |
+<br/> |
|
| 34 | 64 |
<p> |
| 35 | 65 |
Se gestisci un mirror, per favore scrivici a |
| 36 |
-<a href="<page contact>">tor-webmaster</a> |
|
| 37 |
-e ti aggiungeremo alla lista. |
|
| 66 |
+<a href="<page contact>">tor-webmaster</a> e ti aggiungeremo alla lista. |
|
| 38 | 67 |
</p> |
| 39 | 68 |
|
| 40 | 69 |
</div><!-- #main --> |
| 41 | 70 |