This repository has been archived by the owner on Jan 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
/
settings
91 lines (55 loc) · 2.54 KB
/
settings
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Use Bourne Shell style syntax for this file.
#======================================================================
# Global options
#======================================================================
# Set to non-zero to query the production IAS instead of development.
# Note that the SPID and certificate are different for production
# and development, so if you change this you'll need to change them,
# too.
QUERY_IAS_PRODUCTION=0
# Your Service Provider ID. This should be a 32-character hex string.
# [REQUIRED]
SPID=0123456789ABCDEF0123456789ABCDEF
# Set to a non-zero value if this SPID is associated with linkable
# quotes. If you change this, you'll need to change SPID,
# IAS_PRIMARY_SUBSCRIPTION_KEY and IAS_SECONDARY_SUBSCRIPTION_KEY too.
LINKABLE=0
#======================================================================
# Client options
#======================================================================
# Set to non-zero to have the client generate a random nonce.
RANDOM_NONCE=1
# Set to non-zero to have the client generate a platform manifest.
# This requires a PSE session, and thus support for platform
# services.
#
# (Note that server hardware does not support platform services)
USE_PLATFORM_SERVICES=0
#======================================================================
# Service provider (server) options
#======================================================================
# Intel Attestation Service Primary Subscription Key
# More Info: https://api.portal.trustedservices.intel.com/EPID-attestation
# Associated SPID above is required
IAS_PRIMARY_SUBSCRIPTION_KEY=
# Intel Attestation Service Secondary Subscription Key
# This will be used in case the primary subscription key does not work
IAS_SECONDARY_SUBSCRIPTION_KEY=
# The Intel IAS SGX Report Signing CA file. You are sent this certificate
# when you apply for access to SGX Developer Services at
# http://software.intel.com/sgx [REQUIRED]
IAS_REPORT_SIGNING_CA_FILE=
# Set to the URL for your proxy server to force the use of a proxy
# when communicating with IAS (overriding any environment variables).
# IAS_PROXY_URL=
# Set to non-zero to disable the use of a proxy server and force a
# direct connection when communicating with IAS (overriding any
# environment variables).
# IAS_DISABLE_PROXY=0
#======================================================================
# Debugging options
#======================================================================
# Set to non-zero for verbose output
VERBOSE=0
# Set to non-zero for debugging output
DEBUG=0