| | 95 | == Permission to Upload Directory |
| | 96 | |
| | 97 | 1. In order to upload spreadsheets, you need to create an upload directory, for example `/local/telomere/uploads`. |
| | 98 | 2. You then need to point to this in the settings.py file `SPREADSHEET_UPLOAD_DIRECTORY = '/local/telomere/uploads'` |
| | 99 | 3. Finally, you need to give `wwwrun` permission to read and write to the directory. |
| | 100 | |
| | 101 | {{{ |
| | 102 | setfacl -m u:wwwrun:rwx /local/telomere/uploads/ |
| | 103 | rab63@login99:/local/telomere> setfacl -m d:u:wwwrun:rwx /local/telomere/uploads/ |
| | 104 | }}} |
| | 105 | |