# README.md ## webserver > The user that runs apache/php is www-data. > Run sudo chown -R www-data:www-data /var/www/deploy.log to make the file editable by the web server. > The other files you want to perform operations on also need to be writable by the webserver. https://askubuntu.com/questions/617803/php-apache-runs-as-which-user-on-ubuntu-server Attention : ajouter user david au groupe www-data : `sudo usermod -a -G www-data david` ## css ```css /* DANS L'ESPACE ADMIN */ .sp-player-list tr:nth-child(even) {background: #f2ede3} .sp-event-list tr:nth-child(even) {background: #f2ede3} .data-event a {float: left} ``` ## git Initialisation d'un dépôt local, branche dev. Création de branche prod : merge dev into prod pour déployer. Création de dépôt distant --bare upload post-receive ``` $ git remote add origin ssh://ntnlvca@ntnlv.ca:27/home/ntnlvca/public_html/git/lbd.git $ git push -u origin prod ```