Modifiez les autorisations de test.php. Exemple: modifier les autorisations en 775
$ chmod 775 test.php
Il sera remplacé par l'autorisation suivante.
-rwxrwxr-x
- | rwx | rwx | r-x |
---|---|---|---|
-(Fichier)、d(annuaire) | Droits du propriétaire | Privilèges de groupe | Autres droits d'utilisateur |
r | w | x |
---|---|---|
Lisible | Inscriptible | Réalisable |
4 | 2 | 1 |
Changez la propriété de test.php. Exemple: changer la propriété en nginx
$ chown nginx:nginx test.php
Recommended Posts