mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-22 00:27:44 +01:00
fixes #1002
This commit is contained in:
parent
5bd3f33395
commit
5d183da0f9
@ -84,6 +84,6 @@ crt_email = example@example.com
|
||||
|
||||
|
||||
#The path of cert and key files for nginx, they are applied only the protocol is set to https
|
||||
ssl_cert = /path/to/server.crt
|
||||
ssl_cert_key = /path/to/server.key
|
||||
ssl_cert = /data/server.crt
|
||||
ssl_cert_key = /data/server.key
|
||||
#############
|
||||
|
@ -48,23 +48,22 @@ else
|
||||
fi
|
||||
|
||||
#Handle http/https
|
||||
protocal=http
|
||||
protocol=http
|
||||
echo "Read attribute using ovfenv: [ ssl_cert ]"
|
||||
ssl_cert=$(ovfenv -k ssl_cert)
|
||||
echo "Read attribute using ovfenv: [ ssl_cert_key ]"
|
||||
ssl_cert_key=$(ovfenv -k ssl_cert_key)
|
||||
if [ -n "$ssl_cert" ] && [ -n "$ssl_cert_key" ]
|
||||
then
|
||||
echo "ssl_cert and ssl_cert_key are set, using HTTPS protocal"
|
||||
protocal=https
|
||||
sed -i -r s%"#?ui_url_protocol = .*"%"ui_url_protocol = $protocal"% $cfg
|
||||
mkdir -p /path/to
|
||||
echo $ssl_cert > /path/to/server.crt
|
||||
format /path/to/server.crt
|
||||
echo $ssl_cert_key > /path/to/server.key
|
||||
format /path/to/server.key
|
||||
echo "ssl_cert and ssl_cert_key are set, using HTTPS protocol"
|
||||
protocol=https
|
||||
sed -i -r s%"#?ui_url_protocol = .*"%"ui_url_protocol = $protocol"% $cfg
|
||||
echo $ssl_cert > /data/server.crt
|
||||
format /data/server.crt
|
||||
echo $ssl_cert_key > /data/server.key
|
||||
format /data/server.key
|
||||
else
|
||||
echo "ssl_cert and ssl_cert_key are not set, using HTTP protocal"
|
||||
echo "ssl_cert and ssl_cert_key are not set, using HTTP protocol"
|
||||
fi
|
||||
|
||||
for attr in "${attrs[@]}"
|
||||
|
Loading…
Reference in New Issue
Block a user