Skip to content

Commit ef1add8

Browse files
committed
update readme
1 parent 086a7f7 commit ef1add8

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

README.md

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
# azure-ssl-configure
22
This is a template project containing start up scripts to disable ssl 2.0, ssl3.0, configure recommended cipher suite order for your windows azure service, as well as disabling RC4 ciphers.
33

4-
***How did it get created? ***
5-
First, create a normal new Azure project with a web role/worker role, or simply start with your own existing project.
4+
## How did it get created?
5+
### First,
6+
create a normal new Azure project with a web role/worker role, or simply start with your own existing project.
7+
### Second, add scripts
8+
Add a new folder in your web role/worker role project "Startup", copy SSLConfigure.cmd and SSLConfigure.ps1 files into this folder, and add these files into your project.
9+
Make these files being copied to output by setting their property "CopyToOutputDirectory“ to ”Copy Always".
10+
### Third, update service definition file
11+
Add these lines to your ServiceDefinition.csdef file in your Azure project, place it under the corresponding role element of your role project.
12+
```
13+
<WebRole>
14+
...
15+
<Startup>
16+
<Task commandLine="Startup\SSLConfigure.cmd" executionContext="elevated" taskType="simple">
17+
</Task>
18+
</Startup>
19+
</WebRole>
20+
```
621

22+
###Done!
23+
24+
Then try to deploy it have enjoy!!

0 commit comments

Comments
 (0)