47 lines
1.3 KiB
Go
47 lines
1.3 KiB
Go
![]() |
/*
|
||
|
Copyright 2015 The Kubernetes Authors All rights reserved.
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
*/
|
||
|
|
||
|
package ssl
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"io/ioutil"
|
||
|
"os"
|
||
|
|
||
|
"github.com/golang/glog"
|
||
|
)
|
||
|
|
||
|
// SearchDHParamFile iterates all the secrets mounted inside the /etc/nginx-ssl directory
|
||
|
// in order to find a file with the name dhparam.pem. If such file exists it will
|
||
|
// returns the path. If not it just returns an empty string
|
||
|
func SearchDHParamFile(baseDir string) string {
|
||
|
files, _ := ioutil.ReadDir(baseDir)
|
||
|
for _, file := range files {
|
||
|
if !file.IsDir() {
|
||
|
continue
|
||
|
}
|
||
|
|
||
|
dhPath := fmt.Sprintf("%v/%v/dhparam.pem", baseDir, file.Name())
|
||
|
if _, err := os.Stat(dhPath); err == nil {
|
||
|
glog.Infof("using file '%v' for parameter ssl_dhparam", dhPath)
|
||
|
return dhPath
|
||
|
}
|
||
|
}
|
||
|
|
||
|
glog.Warning("no file dhparam.pem found in secrets")
|
||
|
return ""
|
||
|
}
|