-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathadd-signatures-on-server-configure-upload-callback.yml
375 lines (372 loc) · 9.81 KB
/
add-signatures-on-server-configure-upload-callback.yml
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
ROSTemplateFormatVersion: '2015-09-01'
Description:
zh-cn: 创建VPC、安全组、ECS实例,配置OSS存储桶,实现Python服务端签名的OSS直传及回调,包含ECS初始化脚本与Apache部署。
en: Create a Virtual Private Cloud (VPC), configure Security Groups, provision Elastic
Compute Service (ECS) instances, set up Object Storage Service (OSS) buckets,
implement server-side signing for Python-based OSS direct uploads with callback
functionality, including ECS initialization scripts and deployment on Apache.
Parameters:
OSSBucketName:
Type: String
Label:
en: NewBucketName
zh-cn: 新建存储空间名称
Description:
en: Bucket names must be globally unique within the scope of OSS. The length
is 3~63 characters. Must start and end with a lowercase English letter or
number, and can contain lowercase English letters, numbers, and dashes (-).
zh-cn: Bucket 名称在 OSS 范围内必须全局唯一。长度为3~63个字符。必须以小写英文字母或数字开头和结尾,可包含小写英文字母、数字和短划线(-)。
AssociationProperty: AutoCompleteInput
AssociationPropertyMetadata:
Length: 6
Prefix: test-bucketname-
CharacterClasses:
- Class: lowercase
min: 1
AllowedPattern: ^[a-z0-9][a-z0-9-]{1,61}[a-z0-9]$
ZoneId:
Type: String
AssociationProperty: ALIYUN::ECS::Instance::ZoneId
AssociationPropertyMetadata:
AutoSelectFirst: true
Label:
en: Availability Zone
zh-cn: 可用区
InstanceType:
Type: String
AssociationProperty: ALIYUN::ECS::Instance::InstanceType
AssociationPropertyMetadata:
InstanceChargeType: PostPaid
SystemDiskCategory: cloud_essd
ZoneId: ${ZoneId}
Label:
en: Instance Type
zh-cn: 实例规格
Password:
Type: String
Label:
en: Instance Password
zh-cn: 实例密码
Description:
en: The 8-30 long login password of instance, consists of the uppercase, lowercase
letter and number. <br> special characters include()'~!@#$%^&*_-+=|{}[]:;'<>,.?/.
zh-cn: 长度8-30,必须包含大写字母、小写字母、数字、特殊符号三个;<br>特殊字符包括:()'~!@#$%^&*_-+=|{}[]:;'<>,.?/
ConstraintDescription:
en: 'Length 8-30, must contain upper case letters, lower case letters, Numbers,
special symbols three; special characters include: ()`~!@#$%^&*_-+=|{}[]:;''<>,.?/'
zh-cn: 长度8-30,必须包含大写字母、小写字母、数字、特殊符号三种;特殊字符包括:()`~!@#$%^&*_-+=|{}[]:;' <>,.?/
AllowedPattern: '[a-zA-Z0-9-\(\)\`\~\!@\#\$%\^&\*-+=\|\{\}\[\]\:\;\‘\,\.\?\/]*'
MinLength: 8
MaxLength: 30
NoEcho: true
Resources:
Vpc:
Type: ALIYUN::ECS::VPC
Properties:
CidrBlock: 10.0.0.0/8
VpcName:
Fn::Join:
- _
- - Vpc
- Ref: ALIYUN::StackId
SecurityGroup:
Type: ALIYUN::ECS::SecurityGroup
Properties:
VpcId:
Ref: Vpc
SecurityGroupName:
Fn::Join:
- _
- - SecurityGroup
- Ref: ALIYUN::StackId
SecurityGroupIngress:
- Priority: 1
PortRange: 80/80
NicType: internet
SourceCidrIp: 0.0.0.0/0
IpProtocol: tcp
- Priority: 1
PortRange: 8080/8080
NicType: internet
SourceCidrIp: 0.0.0.0/0
IpProtocol: tcp
VSwitch:
Type: ALIYUN::ECS::VSwitch
Properties:
ZoneId:
Ref: ZoneId
VpcId:
Fn::GetAtt:
- Vpc
- VpcId
CidrBlock: 10.0.10.0/24
DependsOn: Vpc
WebServer:
Type: ALIYUN::ECS::Instance
Properties:
ZoneId:
Ref: ZoneId
VpcId:
Ref: Vpc
VSwitchId:
Ref: VSwitch
SecurityGroupId:
Ref: SecurityGroup
ImageId: ubuntu_18
AllocatePublicIP: true
InstanceType:
Ref: InstanceType
Password:
Ref: Password
SystemDiskCategory: cloud_essd
SystemDiskDiskName: SystemDisk
SystemDiskSize: 40
OSSBucket:
Type: ALIYUN::OSS::Bucket
Properties:
BucketName:
Ref: OSSBucketName
DeletionForce: true
CORSConfiguration:
CORSRule:
- AllowedHeader:
- '*'
AllowedMethod:
- POST
AllowedOrigin:
- '*'
MaxAgeSeconds: 0
InstanceRunCommand:
Type: ALIYUN::ECS::RunCommand
Properties:
InstanceIds:
- Ref: WebServer
Type: RunShellScript
CommandContent:
Fn::Sub:
- |
#!/bin/bash
sudo apt update
sudo apt-get install -y unzip
sudo apt-get install -y python3-dev
sudo apt install -y python-pip
pip install pycryptodome
sudo apt-get install -y apache2
mkdir /home/aliyun
cd /home/aliyun
wget https://docs-aliyun.cn-hangzhou.oss.aliyun-inc.com/assets/attach/97721/cn_zh/1545016122500/aliyun-oss-appserver-python-master.zip
unzip aliyun-oss-appserver-python-master.zip
rm aliyun-oss-appserver-python-master.zip
mv aliyun-oss-appserver-python-preview_1.0.1-2f62c60e04b4ff204320adf47ded9d83fd79e826 aliyun-oss-appserver-python
chmod -R 777 /home/aliyun
cd /home/aliyun/aliyun-oss-appserver-python
sed -i 's/<yourAccessKeyId>/${AccessKey.AccessKeyId}/' appserver.py
sed -i 's/<yourAccessKeySecret>/${AccessKey.AccessKeySecret}/' appserver.py
sed -i 's/bucket-name.oss-cn-hangzhou.aliyuncs.com/${OSSBucketName}.oss-${RegionId}.aliyuncs.com/' appserver.py
sed -i 's/88.88.88.88:8888/${PublicIP}:8080/' appserver.py
sed -i '36d' appserver.py
sed -i 's/encodestring/encodebytes/' appserver.py
cd /var/www/html
wget https://docs-aliyun.cn-hangzhou.oss.aliyun-inc.com/assets/attach/86983/APP_zh/1537971352825/aliyun-oss-appserver-js-master.zip
unzip aliyun-oss-appserver-js-master.zip
rm aliyun-oss-appserver-js-master.zip
cd aliyun-oss-appserver-js-master
sed -i 's/88.88.88.88:8888/${PublicIP}:8080/' upload.js
mv * /var/www/html
nohup python3 /home/aliyun/aliyun-oss-appserver-python/appserver.py &
- OSSBucketName:
Ref: OSSBucketName
RegionId:
Ref: ALIYUN::Region
PublicIP:
Fn::GetAtt:
- WebServer
- PublicIp
Timeout: 3600
Sync: true
User:
Type: ALIYUN::RAM::User
Properties:
UserName:
Fn::Sub: create_by_document-${ALIYUN::StackId}
PolicyAttachments:
System:
- AliyunOSSFullAccess
AccessKey:
Type: ALIYUN::RAM::AccessKey
Properties:
UserName:
Ref: User
Outputs:
Console.Bucket:
Label:
zh-cn: Bucket
en: Bucket
Description:
zh-cn: 文件上传到的bucket控制台页面。可访问该链接查看上传情况。
en: Bucket console page, view upload status.
Value:
Fn::Sub:
- https://oss.console.aliyun.com/bucket/oss-${Region}/${OSSBucketName}
- Region:
Ref: ALIYUN::Region
OSSBucketName:
Ref: OSSBucketName
Console.Url:
Label:
zh-cn: Url
en: Url
Description:
zh-cn: 客户端测试页面。可访问该链接测试文件上传。
en: Client html page.
Value:
Fn::Sub:
- http://${IP}
- IP:
Fn::GetAtt:
- WebServer
- PublicIp
Metadata:
ALIYUN::ROS::Interface:
ParameterGroups:
- Parameters:
- OSSBucketName
- ZoneId
- InstanceType
- Password
TemplateTags:
- acs:document-help:oss:Python服务端签名直传并设置上传回调
ALIYUN::ROS::Composer:
2979661b:
Rect:
- 745
- 540
- -130
- 100
- 1
- 0
ResT: Composer::ROSParameter::AlibabaCloud
ccfe827c:
Parent: 2979661b
Rect:
- 713
- 442
- -114
- 150
- 2
- 0
ResT: Composer::ROSParameter::Region
5576c0ec:
Res:
- Vpc
Parent: ccfe827c
Rect:
- 480
- 340
- 3
- 200
- 3
- 0
ca5ece6e:
Res:
- OSSBucket
Parent: ccfe827c
Rect:
- 40
- 40
- 517
- 270
- 3
- 0
4cf58938:
Res:
- InstanceRunCommand
Parent: ccfe827c
Rect:
- 40
- 40
- -69
- 380
- 3
- 0
2df33429:
Res:
- User
Parent: ccfe827c
Rect:
- 40
- 40
- 517
- 366
- 3
- 0
ffb8a2c4:
Res:
- AccessKey
Parent: ccfe827c
Rect:
- 40
- 40
- 517
- 460
- 3
- 0
c6ed348e:
Res:
- ZoneId
Parent: 5576c0ec
Rect:
- 440
- 270
- 23
- 250
- 4
- 0
ResT: Composer::ROSParameter::Zone
c358bf6e:
Res:
- VSwitch
Parent: c6ed348e
Rect:
- 400
- 200
- 43
- 300
- 5
- 0
9cd3b729:
Parent: ccfe827c
Edge:
- 4cf58938
- ed0d3b58
Line: 0:0:0:gray:0
4066cb91:
Parent: ccfe827c
Edge:
- ffb8a2c4
- 2df33429
Line: 0:0:0:gray:0
5390c184:
Res:
- SecurityGroup
Parent: 5576c0ec
Rect:
- 273
- 138
- 107
- 331
- 11
- 0
ed0d3b58:
Res:
- WebServer
Parent: c358bf6e
Rect:
- 40
- 40
- 223
- 380
- 12
- 0
Layer:
- 5390c184