diff --git a/README.md b/README.md
index 8631b22..0bb8ddc 100644
--- a/README.md
+++ b/README.md
@@ -14,11 +14,9 @@ nano make_index.sh
# oppure mettilo in cron
0 0 * * * /path/to/make_index.sh
```
-#### 1.2 Se vuoi pubblicarla sul web, mettila dietro un reverseproxy e deccommenta il comando che da i permessi alla cartella con lo script:
-```
-sudo chown -R www-data:www-data $PWD_SC; sudo chmod -R 755 $PWD_SC
-```
+Se vuoi pubblicarla sul web: aggiusta la variabile PWD_SC in testa allo script make_index.sh, deccommenta i comandi in fondo allo script e metti la tua cartella (quella che hai messo in PWD_SC) dietro a un reverse proxy
+
#### 2. Crea un feed rss con il link (richiede "attuale.txt"):
```
diff --git a/make_index.sh b/make_index.sh
index 684cf27..e20d0ec 100755
--- a/make_index.sh
+++ b/make_index.sh
@@ -120,4 +120,10 @@ _EOF
./make_stats.sh
# Da i permessi alla cartella (decommentare se hostato)
-#chmod +x $PWD_SC ; chmod -R 744 $PWD_SC/*.html; chmod -R 744 $PWD_SC/*.json; chown root:root ./*.sh; chmod 740 ./*.sh
\ No newline at end of file
+#chown -R root:root $PWD_SC; echo "cartella di root"
+#chmod +x $PWD_SC ; echo "permetto di leggere dentro a $PWD_SC"
+#chmod 740 $PWD_SC/*; echo "reset permessi per tutti i file"
+#chown -R www-data:www-data $PWD_SC/*.html; chmod -R 744 $PWD_SC/*.html; echo "do i permessi agli html"
+#chown -R www-data:www-data $PWD_SC/*.json; chmod -R 744 $PWD_SC/*.json; echo "do i permessi ai json"
+#chown -R www-data:www-data $PWD_SC/*.xml; chmod -R 744 $PWD_SC/*.xml; echo "do i permessi agli xml"
+#chown root:root ./*.sh; chmod 740 ./*.sh; echo "do i permesi agli sh"
diff --git a/make_index_without_stats.sh b/make_index_without_stats.sh
index 57cd053..d93daf2 100755
--- a/make_index_without_stats.sh
+++ b/make_index_without_stats.sh
@@ -118,4 +118,9 @@ cat <<- _EOF > $PWD_SC/index.html
_EOF
# Da i permessi alla cartella (decommentare se hostato)
-#chmod +x $PWD_SC ; chmod -R 744 $PWD_SC/*.html; chmod -R 744 $PWD_SC/*.json; chown root:root ./*.sh; chmod 740 ./*.sh
\ No newline at end of file
+#chown -R root:root $PWD_SC; echo "cartella di root"
+#chmod +x $PWD_SC ; echo "permetto di leggere dentro a $PWD_SC"
+#chmod 740 $PWD_SC/*; echo "reset permessi per tutti i file"
+#chown -R www-data:www-data $PWD_SC/*.xml; chmod -R 744 $PWD_SC/*.xml; echo "do i permessi agli xml"
+#chown -R www-data:www-data $PWD_SC/*.html; chmod -R 744 $PWD_SC/*.html; echo "do i permessi agli html"
+#chown root:root ./*.sh; chmod 740 ./*.sh; echo "do i permesi agli sh"
\ No newline at end of file