Update standalone authored by bgm's avatar bgm
...@@ -59,13 +59,13 @@ composer install ...@@ -59,13 +59,13 @@ composer install
And then change some permissions: And then change some permissions:
``` ```
# Keeping smarty files outside the public webroot # Keeping smarty and logs files outside the public webroot
chgrp www-data data/templates_c chgrp www-data data
chmod g+w data/templates_c chmod g+w data
# Some uploads are assumed to be publicly accessible, I think? # Publicly accessible files (ex: upload/ext, upload/persist)
chgrp www-data data/upload chgrp www-data web/upload
chmod g+w data/upload chmod g+w web/upload
``` ```
About composer: Presumably we will want a composer template, so that people can also build their own composer project. The `mlutfy/civicrm-standalone` git repo was created mostly to package the `index.php` and help setup the directories, but also has an htaccess file, config template and other things to get started. About composer: Presumably we will want a composer template, so that people can also build their own composer project. The `mlutfy/civicrm-standalone` git repo was created mostly to package the `index.php` and help setup the directories, but also has an htaccess file, config template and other things to get started.
... ...
......