mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
Merge pull request #981 from yunohost-bot/anonymous-2019-04-25_04-58-46
[Anonymous contrib] Completed italian translation
This commit is contained in:
commit
f6f3b65430
1 changed files with 50 additions and 0 deletions
50
torhiddenservice_it.md
Normal file
50
torhiddenservice_it.md
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
## Collegarsi a Yunohost attraverso un Hidden Service
|
||||||
|
<div class="alert alert-warning">
|
||||||
|
Questo tutorial non è completo! Con queste impostazioni alcuni dati possono essere rivelati come ad esempio il dominio principale del tuo yunohost, di conseguenza non può essere considerato un reale "Hidden service".
|
||||||
|
</div>
|
||||||
|
|
||||||
|
Vedi https://www.torproject.org/docs/tor-hidden-service.html
|
||||||
|
|
||||||
|
### Installare Tor
|
||||||
|
```bash
|
||||||
|
apt install tor
|
||||||
|
```
|
||||||
|
|
||||||
|
### Configurazione dell'hidden service
|
||||||
|
Modifica `/etc/tor/torrc` aggiungendo queste righe:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
HiddenServiceDir /var/lib/tor/hidden_service/
|
||||||
|
HiddenServicePort 80 127.0.0.1:80
|
||||||
|
HiddenServicePort 443 127.0.0.1:443
|
||||||
|
```
|
||||||
|
|
||||||
|
### Riavvia Tor
|
||||||
|
```bash
|
||||||
|
service tor restart
|
||||||
|
```
|
||||||
|
|
||||||
|
### Copia l'hostname del tuo Hidden Service
|
||||||
|
```bash
|
||||||
|
cat /var/lib/tor/hidden_service/hostname
|
||||||
|
```
|
||||||
|
|
||||||
|
Il dominio dell'hidden service sarà una cosa tipo *random123456789.onion*
|
||||||
|
|
||||||
|
### Aggiungi il dominio .onion a Yunohost
|
||||||
|
```bash
|
||||||
|
yunohost domain add random123456789.onion
|
||||||
|
```
|
||||||
|
|
||||||
|
### Disabilita la redirezione SSO (opzionale)
|
||||||
|
Se non vuoi essere rediretto al portale SSO al login puoi disattivare SSOwat specificatamente per questo dominio modificando il file `/etc/nginx/conf.d/random123456789.onion.conf` commentando le seguenti linee (due volte):
|
||||||
|
|
||||||
|
```bash
|
||||||
|
#access_by_lua_file /usr/share/ssowat/access.lua;
|
||||||
|
```
|
||||||
|
|
||||||
|
### Riavvia nginx
|
||||||
|
```bash
|
||||||
|
service nginx restart
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue