forked from nginx-proxy/nginx-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate-dhparam.ps1
54 lines (46 loc) · 1.97 KB
/
generate-dhparam.ps1
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
Param
(
[int] $DHPARAM_BITS = 2048,
[switch] $DHPARAM_GENERATION = $true
)
$ErrorActionPreference = 'Continue'
# If a dhparam file is not available, use the pre-generated one and generate a new one in the background.
# Note that /etc/nginx/dhparam is a volume, so this dhparam will persist restarts.
$PREGEN_DHPARAM_FILE = "C:\app\dhparam.pem.default"
$DHPARAM_FILE = "C:\nginx\dhparam\dhparam.pem"
$GEN_LOCKFILE = "C:\dhparam_generating.lock"
# The hash of the pregenerated dhparam file is used to check if the pregen dhparam is already in use
$PREGEN_HASH = Get-FileHash -Path $PREGEN_DHPARAM_FILE -Algorithm MD5 -ErrorAction SilentlyContinue
if ($null -ne $(Get-Content $DHPARAM_FILE -ErrorAction SilentlyContinue))
{
$CURRENT_HASH = Get-FileHash -Path $DHPARAM_FILE -Algorithm MD5
if ($PREGEN_HASH -ne $CURRENT_HASH )
{
Write-Host "Custom dhparam.pem file found, generation skipped"
Exit 0
}
if ($null -ne $(Get-Content $GEN_LOCKFILE -ErrorAction SilentlyContinue))
{
Write-Warning "Generation already in progress"
Exit 0
}
}
if ($false -eq $DHPARAM_GENERATION)
{
Write-Host "Skipping Diffie-Hellman parameters generation and Ignoring pre-generated dhparam.pem"
Exit 0
}
Write-Warning "$DHPARAM_FILE was not found. A pre-generated dhparam.pem will be used for now while a new one
is being generated in the background. Once the new dhparam.pem is in place, nginx will be reloaded."
# Put the default dhparam file in place so we can start immediately
Copy-Item $PREGEN_DHPARAM_FILE $DHPARAM_FILE
New-Item $GEN_LOCKFILE
#($GEN_LOCKFILE).LastWriteTime = Get-Date
Get-Content $DHPARAM_FILE
Write-Host $DHPARAM_BITS
# Generate a new dhparam in the background in a low priority and reload nginx when finished (grep removes the progress indicator).
openssl dhparam -out $DHPARAM_FILE $DHPARAM_BITS
#Move-Item $DHPARAM_FILE.tmp $DHPARAM_FILE
Write-Host "dhparam generation complete, reloading nginx"
nginx -s reload
Remove-Item $GEN_LOCKFILE