Go to file
2022-10-28 23:52:32 +02:00
html Use canvas instead of dashboard and use public proxy 2022-10-28 23:52:32 +02:00
.gitignore reset 2021-11-17 22:33:58 +01:00
LICENSE reset 2021-11-17 22:33:58 +01:00
README.md reset 2021-11-17 22:33:58 +01:00

Sources du site de GNOUS

La dernière version stable est accessible à cette adresse : https://www.gnous.fr

Testing

Une version de test tourne peut-être ici.

Protection basique du site en développement (testing)

Définition d'un fichier .htaccess et .htpasswd à la racine du répertoire web :

cat << EOF >> .htaccess
AuthName "Pages de test"
AuthType Basic
AuthUserFile "/var/www/html/.htpasswd"
Require valid-user
EOF

printf "USER:$(openssl passwd -apr1 PASSWORD)\n" >> .htpasswd