-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathconfiguration.yml
More file actions
52 lines (47 loc) · 1.69 KB
/
Copy pathconfiguration.yml
File metadata and controls
52 lines (47 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
################################################
# Server configurations
################################################
server:
connector:
# Changing port is available for embedded server only
# Is is not possible to change port for deploying application on external server
port: ${PORT:8080}
################################################
# Application (global) configurations
################################################
application:
# License path
# Absolute or relative path to GroupDocs license file
licensePath: ${LIC_PATH:}
# Host name or ip for server instance
hostAddress: ${HOST_ADDRESS:}
################################################
# Common configurations
################################################
common:
# File rewriting on document uploading
# Set false to keep both files
# Set true to replace files with same name
rewrite: ${REWRITE:true}
# Page navigation
# Set false to disable document navigation (go to next, previous, last and first page)
pageSelector: true
# Document download
# Set false to disable document download
download: ${DOWNLOAD_ON:true}
# Document upload
# Set false to disable document upload
upload: ${UPLOAD_ON:true}
# File browser
# Set false to disable document browse
browse: ${BROWSE_ON:true}
################################################
# GroupDocs.Conversion configurations
################################################
conversion:
# Files directory path
# Absolute or relative path to files directory
filesDirectory: ${FILES_DIR:DocumentSamples}
# Result files directory path
# Absolute path to result files directory
resultDirectory: ${RESULT_DIR:DocumentSamples/Conversion/Converted}