scratch – Diff between revs 111 and 123

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 111 Rev 123
1 ########################################################################### 1 ###########################################################################
2 ## Copyright (C) Wizardry and Steamworks 2017 - License: GNU GPLv3 ## 2 ## Copyright (C) Wizardry and Steamworks 2017 - License: GNU GPLv3 ##
3 ########################################################################### 3 ###########################################################################
4   4  
5 # Set this to the filesystem to the folder where the files should be 5 # Set this to the filesystem to the folder where the files should be
6 # uploaded. 6 # uploaded.
7 STORE_FOLDER: '/var/www/incoming/' 7 STORE_FOLDER: '/var/www/incoming/'
8   8  
9 # The size of the asset hash generated when uploading. 9 # The size of the asset hash generated when uploading.
10 ASSET_HASH_SIZE: 8 10 ASSET_HASH_SIZE: 8
11   11  
12 # The size in MiB allowed for file uploads. 12 # The size in MiB allowed for file uploads.
13 ALLOWED_ASSET_SIZE: 8 13 ALLOWED_ASSET_SIZE: 8
14   -  
15 # Set this to the URL path of the folder where the files can be retrieved. -  
16 URL_PATH: 'https://cpy.ro/' -  
17   14  
18 # Set this to the number of seconds within a video file that a preview 15 # Set this to the number of seconds within a video file that a preview
19 # image will be generated when sharing movies. 16 # image will be generated when sharing movies.
20 VIDEO_PREVIEW_IMAGE_FRAME_SECOND: 1 17 VIDEO_PREVIEW_IMAGE_FRAME_SECOND: 1
21   18  
22 # A list of allowed files by extension that the template will accept. 19 # A list of allowed files by extension that the template will accept.
23 ALLOWED_FILE_EXTENSIONS: 20 ALLOWED_FILE_EXTENSIONS:
24 - PNG 21 - PNG
25 - JPG 22 - JPG
26 - JPEG 23 - JPEG
27 - GIF 24 - GIF
28 - TGA 25 - TGA
29 - SVG 26 - SVG
30 - JP2 27 - JP2
31 - JP 28 - JP
32 - ZIP 29 - ZIP
33 - RAR 30 - RAR
34 - GZ 31 - GZ
35 - TAR 32 - TAR
36 - BZ2 33 - BZ2
37 - TXT 34 - TXT
38 - CSV 35 - CSV
39 - HTML 36 - HTML
40 - HTM 37 - HTM
41 - DOC 38 - DOC
42 - DOCX 39 - DOCX
43 - XLS 40 - XLS
44 - MP4 41 - MP4
45 - MP3 42 - MP3
46   43